-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaywright.config.js
41 lines (37 loc) · 963 Bytes
/
playwright.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
// @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",
fullyParallel: process.env.PARALLEL ? true : false,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: process.env.ALLURE_REPORT
? [["line"], ["allure-playwright"]]
: [["line"], ["html"]],
use: {
trace: "on-first-retry",
testIdAttribute: "data-qa",
config: require("config"),
},
/* Configure projects for major browsers */
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
/* Test against mobile viewports. */
{
name: "Mobile Chrome",
use: { ...devices["Pixel 5"] },
},
],
});