mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
61 lines
2.0 KiB
JavaScript
61 lines
2.0 KiB
JavaScript
// @ts-check
|
|
const { devices } = require('@playwright/test');
|
|
const path = require('path');
|
|
|
|
/**
|
|
* @see https://playwright.dev/docs/test-configuration
|
|
* @type {import('@playwright/test').PlaywrightTestConfig}
|
|
*/
|
|
const config = {
|
|
testDir: path.join(__dirname, '{{testDir}}'), /* Test directory */
|
|
forbidOnly: !!process.env.CI, /* Whether to exit with an error if any tests or groups are marked as test.only() or test.describe.only(). Useful on CI. */
|
|
retries: process.env.CI ? 2 : 0, /* If a test fails on CI, retry it additional 2 times */
|
|
// timeout: 30 * 1000, /* Timeout per test */
|
|
// outputDir: 'test-results/', /* Artifacts folder where screenshots, videos, and traces are stored. */
|
|
|
|
// webServer: { /* Run your local dev server before starting the tests: */
|
|
// command: 'npm run start', /* https://playwright.dev/docs/test-advanced#launching-a-development-web-server-during-the-tests */
|
|
// port: 3000,
|
|
// },
|
|
|
|
use: {
|
|
trace: 'on-first-retry', /* Retry a test if its failing with enabled tracing. This allows you to analyse the DOM, console logs, network traffic etc. */
|
|
// contextOptions: { /* All available context options: https://playwright.dev/docs/api/class-browser#browser-new-context */
|
|
// ignoreHTTPSErrors: true,
|
|
// },
|
|
},
|
|
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
},
|
|
},
|
|
{
|
|
name: 'firefox',
|
|
use: {
|
|
...devices['Desktop Firefox'],
|
|
},
|
|
},
|
|
{
|
|
name: 'webkit',
|
|
use: {
|
|
...devices['Desktop Safari'],
|
|
},
|
|
},
|
|
/* Test against mobile viewports. */
|
|
// {
|
|
// name: 'Mobile Chrome',
|
|
// use: {
|
|
// ...devices['Pixel 5'],
|
|
// },
|
|
// },
|
|
// {
|
|
// name: 'Mobile Safari',
|
|
// use: devices['iPhone 12'],
|
|
// },
|
|
],
|
|
};
|
|
module.exports = config;
|