-
Notifications
You must be signed in to change notification settings - Fork 2
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
fix: Failing regression E2E tests #2337
Changes from all commits
8a886ea
85ce7e1
b530361
ad6c480
9630fd0
8e34b40
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ const config: PlaywrightTestConfig = { | |
webServer: { | ||
command: `pnpm ui`, | ||
port: 3000, | ||
reuseExistingServer: false, | ||
reuseExistingServer: !process.env.CI, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This allows us to run the React app at |
||
}, | ||
/* Configure projects for major browsers */ | ||
projects: [ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
The missing
!
here is my schoolboy error here that caused the latest Uniform submission to fail sorry!If I can't progress this PR by later today I'll cherry-pick this commit into a new PR to get to prod for re-submission to take place.