mirror of
https://github.com/nasa/openmct.git
synced 2024-12-18 20:57:53 +00:00
32 lines
680 B
JavaScript
32 lines
680 B
JavaScript
|
/* eslint-disable no-undef */
|
||
|
// playwright.config.js
|
||
|
// @ts-check
|
||
|
|
||
|
/** @type {import('@playwright/test').PlaywrightTestConfig} */
|
||
|
const config = {
|
||
|
retries: 0,
|
||
|
testDir: 'tests',
|
||
|
timeout: 30 * 1000,
|
||
|
webServer: {
|
||
|
command: 'npm run start',
|
||
|
port: 8080,
|
||
|
timeout: 120 * 1000,
|
||
|
reuseExistingServer: !process.env.CI
|
||
|
},
|
||
|
use: {
|
||
|
browserName: "chromium",
|
||
|
baseURL: 'http://localhost:8080/',
|
||
|
headless: false,
|
||
|
ignoreHTTPSErrors: true,
|
||
|
screenshot: 'on',
|
||
|
trace: 'on',
|
||
|
video: 'on'
|
||
|
},
|
||
|
reporter: [
|
||
|
['list'],
|
||
|
['allure-playwright']
|
||
|
]
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|