We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99e9f7e commit a15f60fCopy full SHA for a15f60f
playwright.config.js
@@ -24,7 +24,8 @@ module.exports = defineConfig({
24
/* Uses 'github' for GitHub Actions CI to generate annotations, otherwise 'html' */
25
reporter: [
26
[ 'html' ],
27
- ...(process.env.CI && process.env.PLAYWRIGHT_TEST_URL === 'http://localhost:5000/' ? [ 'github' ] : [])
+ ...(process.env.CI && process.env.PLAYWRIGHT_TEST_URL === 'http://localhost:5000/'
28
+ ? [ 'github', { outputFile: 'test-results.json' } ] : [])
29
],
30
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
31
use: {
0 commit comments