forked from uber/baseweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playwright-base.config.ts
43 lines (39 loc) · 969 Bytes
/
playwright-base.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
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
import { devices } from '@playwright/test';
import type { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
forbidOnly: !!process.env.CI,
workers: '100%',
reporter: 'html',
projects: [
{
name: 'chromium',
use: {
...devices['Desktop Chrome'],
isMobile: false,
},
},
// {
// name: 'firefox',
// use: { ...devices['Desktop Firefox'] },
// },
// {
// name: 'webkit',
// use: { ...devices['Desktop Safari'] },
// },
],
retries: process.env.CI ? 2 : 0,
use: {
screenshot: 'only-on-failure',
trace: 'on-first-retry',
},
expect: {
toMatchSnapshot: { maxDiffPixelRatio: 0.2 },
// toHaveScreenshot: { maxDiffPixelRatio: 0.2 },
},
};
export default config;