-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E2E: Basic list component tests using organisation spaces tab #2835
Conversation
Hey richard-cox! Thanks for submitting this pull request! I'm here to inform the recipients of the pull request that you and the commit authors have already signed the CLA. |
Codecov Report
@@ Coverage Diff @@
## v2-master #2835 +/- ##
=============================================
- Coverage 71.34% 71.34% -0.01%
=============================================
Files 604 604
Lines 25868 25867 -1
Branches 5861 5861
=============================================
- Hits 18455 18454 -1
Misses 7413 7413 |
- Increase minimum timeout to execute any before,after,it - Reduce time taken to create test spaces - Reduce time taken to delete test spaces
- Previously failed to delete.. and then failed to connect to endpoint in next e2e test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few comments
src/test-e2e/e2e.types.ts
Outdated
@@ -1,11 +1,13 @@ | |||
export interface E2ECred { | |||
username: string; | |||
password: string; | |||
guid?: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we store this somewhere else? We're cacheing a user guid - its not part of the credential.
src/test-e2e/e2e.types.ts
Outdated
} | ||
|
||
export interface E2ECreds { | ||
admin: E2ECred; | ||
nonAdmin?: E2ECred; | ||
guid: string; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this for?
For request params ensure xGUID -> xGuid
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.