Skip to content

Commit

Permalink
SWC-6621: add descriptive message to troubleshoot error before e2e te…
Browse files Browse the repository at this point in the history
…sts start running
  • Loading branch information
hallieswan committed Jan 8, 2024
1 parent c55db09 commit b4a5a5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,11 @@ export default defineConfig({
// },
],
webServer: {
command: process.env.CI ? '' : 'mvn gwt:run',
command: process.env.CI
? 'echo SWC docker container is not running'
: 'mvn gwt:run',
url: baseURL,
reuseExistingServer: true, // on CI, will use the tomcat server
stdout: 'pipe',
},
})

0 comments on commit b4a5a5b

Please sign in to comment.