-
Notifications
You must be signed in to change notification settings - Fork 889
test(site): add e2e tests for experiments #12940
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Closed
f39d4aa
to
d15f10d
Compare
mtojek
commented
Apr 12, 2024
@@ -22,7 +29,7 @@ export default defineConfig({ | |||
testMatch: /.*\.spec\.ts/, | |||
dependencies: ["testsSetup"], | |||
use: { storageState }, | |||
timeout: 20_000, | |||
timeout: 50_000, |
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.
Otherwise:
2024-04-12T07:59:03.3989632Z ==> Errors
2024-04-12T07:59:03.3990075Z �[31mTest timeout of 20000ms exceeded.�[39m
2024-04-12T07:59:03.3991129Z /home/runner/actions-runner/_work/coder/coder/site/e2e/helpers.ts:357:
2024-04-12T07:59:03.3992071Z at helpers.ts:357
2024-04-12T07:59:03.3992271Z
2024-04-12T07:59:03.3992405Z 355 | });
2024-04-12T07:59:03.3992661Z 356 |
2024-04-12T07:59:03.3993276Z > 357 | await page.getByTestId("agent-status-ready").waitFor({ state: "visible" });
2024-04-12T07:59:03.3993951Z | ^
2024-04-12T07:59:03.3994334Z 358 | return cp;
2024-04-12T07:59:03.3994667Z 359 | };
2024-04-12T07:59:03.3994999Z 360 |
2024-04-12T07:59:03.3995440Z Error: locator.waitFor: Test timeout of 20000ms exceeded.
2024-04-12T07:59:03.3995871Z Call log:
2024-04-12T07:59:03.3996400Z �[2m- waiting for getByTestId('agent-status-ready') to be visible�[22m
johnstcn
approved these changes
Apr 12, 2024
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Related: #12508
This PR adds e2e test to verify presented experiments in the UI.