-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathplaywright.config.js
More file actions
68 lines (65 loc) · 2.35 KB
/
Copy pathplaywright.config.js
File metadata and controls
68 lines (65 loc) · 2.35 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// @ts-check
const { defineConfig, devices } = require( '@playwright/test' );
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
/**
* @see https://playwright.dev/docs/test-configuration
*/
module.exports = defineConfig( {
testDir: './tests/play/specs',
// Log in once before any worker starts; all workers reuse the saved cookies.
globalSetup: './tests/play/global-setup.js',
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !! process.env.CI,
// Each test creates its own isolated form — safe to run in parallel.
// CI: 1 worker per shard (parallelism comes from the 4-shard matrix).
// Local: 4 workers for faster feedback.
fullyParallel: true,
workers: process.env.CI ? 1 : 4,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Maximum time one test can run for. */
timeout: 170 * 1000,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
// CI: blob reporter per shard — merged into one HTML report by merge-reports job.
// Local: HTML + line for immediate feedback.
reporter: process.env.CI
? [ [ 'blob' ], [ 'line' ] ]
: [ [ 'html', { open: 'never' } ], [ 'line' ] ],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 10000,
},
// Suppress slow-test warnings — tests are intentionally long (WP env interactions).
reportSlowTests: null,
outputDir: 'tests/play/test-results/',
use: {
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
actionTimeout: 0,
/* Base URL to use in actions like `await page.goto('/')`. */
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'retain-on-failure',
screenshot: 'only-on-failure',
baseURL: 'http://localhost:8888/',
headless: true,
ignoreHTTPSErrors: true,
browserName: 'chromium',
// Restore the shared auth state logged in during globalSetup.
storageState: 'tests/play/storageState.json',
},
/* Configure projects for major browsers */
projects: [
{
name: 'chromium',
use: { ...devices[ 'Desktop Chrome' ] },
grepInvert: /-chromium/,
},
],
} );