-
Notifications
You must be signed in to change notification settings - Fork 0
/
playwright.config.ts
57 lines (55 loc) · 1.3 KB
/
playwright.config.ts
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
import type { PlaywrightTestConfig } from '@playwright/test'
import { devices } from '@playwright/test'
const config: PlaywrightTestConfig = {
testDir: './tests/e2e',
timeout: 15 * 1000,
expect: {
/**
* Maximum time expect() should wait for the condition to be met.
* For example in `await expect(locator).toHaveText();`
*/
timeout: 3000,
},
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 1 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 2 : undefined,
use: {
actionTimeout: 0,
baseURL: 'http://localhost:5173',
trace: 'on-first-retry',
// headless: !!process.env.CI,
},
webServer: {
command: 'vite dev',
port: 5173,
reuseExistingServer: !process.env.CI,
},
projects: [
{
name: 'iPhone 6',
use: {
browserName: 'webkit',
...devices['iPhone 6'],
},
},
{
name: 'Macbook 11',
use: {
browserName: 'firefox',
...devices['Macbook 11'],
video: 'on-first-retry',
},
},
{
name: 'Desktop',
use: {
browserName: 'chromium',
...devices['Macbook Pro'],
},
},
],
}
export default config