61 lines
1.4 KiB
TypeScript
61 lines
1.4 KiB
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
/**
|
|
* See https://playwright.dev/docs/test-configuration.
|
|
*/
|
|
export default defineConfig({
|
|
testDir: "test",
|
|
fullyParallel: true,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 3 : 0,
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: process.env.CI ? "blob" : "html",
|
|
timeout: 10 * 60 * 1000,
|
|
use: {
|
|
trace: "off",
|
|
video: "off",
|
|
screenshot: "on",
|
|
testIdAttribute: "data-test",
|
|
contextOptions: {
|
|
ignoreHTTPSErrors: true,
|
|
},
|
|
},
|
|
|
|
expect: {
|
|
// Many of our expectations take a little longer than the default 5 seconds.
|
|
timeout: 15 * 1000,
|
|
},
|
|
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: { ...devices["Desktop Chrome"] },
|
|
},
|
|
{
|
|
name: "firefox",
|
|
use: { ...devices["Desktop Firefox"] },
|
|
},
|
|
{
|
|
name: "webkit",
|
|
use: { ...devices["Desktop Safari"] },
|
|
},
|
|
/* Test against branded browsers. */
|
|
{
|
|
name: "Google Chrome",
|
|
use: { ...devices["Desktop Chrome"], channel: "chrome" }, // or 'chrome-beta'
|
|
},
|
|
{
|
|
name: "Microsoft Edge",
|
|
use: { ...devices["Desktop Edge"], channel: "msedge" }, // or 'msedge-dev'
|
|
},
|
|
],
|
|
|
|
webServer: {
|
|
command: "npm run start",
|
|
url: "https://127.0.0.1:1234/_ready",
|
|
timeout: 120 * 1000,
|
|
ignoreHTTPSErrors: true,
|
|
reuseExistingServer: !process.env.CI,
|
|
},
|
|
});
|