-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplaywright.config.js
47 lines (43 loc) · 1.27 KB
/
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
42
43
44
45
46
47
// @ts-check
const { defineConfig, devices } = require('@playwright/test');
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
require('dotenv').config();
const baseUrl = process.env.JIRA_URL;
/**
* @see https://playwright.dev/docs/test-configuration
*/
module.exports = defineConfig({
testDir: './jira-cloud-e2e/tests',
/* Run tests in files in parallel */
fullyParallel: true,
/* Opt out of parallel tests on CI. */
workers: 5,
retries: 0,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'list',
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL: baseUrl,
/* Record trace for each test. When test run passes, remove the recorded trace. */
trace: 'retain-on-failure',
screenshot: 'only-on-failure',
actionTimeout: 10000,
},
projects: [
// Setup project
{ name: 'setup', testMatch: /.*\.setup\.js/ },
{
name: 'chromium',
use: {
...devices['Desktop Chrome'],
viewport: { width: 1920, height: 1080 },
storageState: 'playwright/.auth/user.json',
},
dependencies: ['setup'],
},
],
});