-
Notifications
You must be signed in to change notification settings - Fork 4
/
playwright.config.ts
43 lines (42 loc) · 1005 Bytes
/
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
// playwright.config.ts
import {PlaywrightTestConfig, devices} from '@playwright/test';
const config: PlaywrightTestConfig = {
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
use: {
video: 'on',
trace: 'on',
screenshot: 'only-on-failure',
},
projects: [
// {
// name: 'chromium',
// use: { ...devices['Desktop Chrome'] },
// },
// {
// name: 'firefox',
// use: { ...devices['Desktop Firefox'] },
// },
{
name: 'webkit',
use: { ...devices['Desktop Safari'] },
},
],
reporter: [
[
'./src/lib/zebReporter.ts',
{
reporterBaseUrl: 'https://default.zebrunner.com',
projectKey: 'DEF',
enabled: true,
concurrentTasks: 19,
slackEnabled: true,
slackDisplayNumberOfFailures: 10,
slackReportOnlyOnFailures: true,
slackReportingChannels: 'zeb,general',
slackStacktraceLength: 270,
},
],
],
};
export default config;