-
Notifications
You must be signed in to change notification settings - Fork 0
/
playwright-prod-spa.config.js
42 lines (37 loc) · 1.19 KB
/
playwright-prod-spa.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// @ts-check
const preset = require("./playwright.preset")
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
const PORT = 4202
const WEB_SERVER_COMMANDS = [
// `node jsdom-ssg/index.js --environment e2e-prod`,
`node server.js --environment e2e-prod --serverMode spa --port ${PORT}`,
]
/**
* @see https://playwright.dev/docs/test-configuration
* @type {import('@playwright/test').PlaywrightTestConfig}
*/
const config = {
...preset,
// testMatch: /tests\/app\/.+\.spec\.js/,
testMatch: /tests\/(app|spa(-prod)?)\/.+\.spec\.js/,
/* Folder for test artifacts such as screenshots, videos, traces, etc. */
outputDir: "test-results/spa-prod",
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [["html", { outputFolder: "playwright-report/spa-prod" }]],
use: {
...preset.use,
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: `http://localhost:${PORT}`,
},
/* Run your local dev server before starting the tests */
webServer: {
command: WEB_SERVER_COMMANDS.join(" && "),
port: PORT,
reuseExistingServer: !process.env.CI,
},
}
module.exports = config