2023-12-17 03:02:22 -08:00
|
|
|
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
|
|
|
|
const port = 30001;
|
2024-08-28 14:18:04 -07:00
|
|
|
export const url = `http://localhost:${port}`;
|
2023-12-17 03:02:22 -08:00
|
|
|
|
|
|
|
export default defineConfig({
|
|
|
|
// Look for test files in the "tests" directory, relative to this configuration file.
|
2024-08-28 14:18:04 -07:00
|
|
|
testDir: "../test/e2e/specs",
|
2023-12-17 03:02:22 -08:00
|
|
|
outputDir: "../private/playwright-test-results",
|
|
|
|
fullyParallel: false,
|
|
|
|
locale: "en-US",
|
|
|
|
|
|
|
|
// Fail the build on CI if you accidentally left test.only in the source code.
|
|
|
|
forbidOnly: !!process.env.CI,
|
|
|
|
|
|
|
|
// Retry on CI only.
|
|
|
|
retries: process.env.CI ? 2 : 0,
|
|
|
|
|
|
|
|
// Opt out of parallel tests on CI.
|
|
|
|
workers: 1,
|
|
|
|
|
|
|
|
// Reporter to use
|
|
|
|
reporter: [
|
|
|
|
[
|
|
|
|
"html", {
|
|
|
|
outputFolder: "../private/playwright-report",
|
|
|
|
open: "never",
|
|
|
|
}
|
|
|
|
],
|
|
|
|
],
|
|
|
|
|
|
|
|
use: {
|
|
|
|
// Base URL to use in actions like `await page.goto('/')`.
|
|
|
|
baseURL: url,
|
|
|
|
|
|
|
|
// Collect trace when retrying the failed test.
|
|
|
|
trace: "on-first-retry",
|
|
|
|
},
|
|
|
|
|
|
|
|
// Configure projects for major browsers.
|
|
|
|
projects: [
|
|
|
|
{
|
2024-08-28 14:18:04 -07:00
|
|
|
name: "run-once setup",
|
|
|
|
testMatch: /setup-process\.once\.js/,
|
2023-12-17 03:02:22 -08:00
|
|
|
use: { ...devices["Desktop Chrome"] },
|
|
|
|
},
|
2024-08-28 14:18:04 -07:00
|
|
|
{
|
|
|
|
name: "specs",
|
|
|
|
use: { ...devices["Desktop Chrome"] },
|
|
|
|
dependencies: [ "run-once setup" ],
|
|
|
|
},
|
2023-12-17 03:02:22 -08:00
|
|
|
/*
|
|
|
|
{
|
|
|
|
name: "firefox",
|
|
|
|
use: { browserName: "firefox" }
|
|
|
|
},*/
|
|
|
|
],
|
|
|
|
|
|
|
|
// Run your local dev server before starting the tests.
|
|
|
|
webServer: {
|
2024-08-31 17:20:55 -07:00
|
|
|
command: `node extra/remove-playwright-test-data.js && cross-env NODE_ENV=development node server/server.js --port=${port} --data-dir=./data/playwright-test`,
|
2023-12-17 03:02:22 -08:00
|
|
|
url,
|
|
|
|
reuseExistingServer: false,
|
|
|
|
cwd: "../",
|
|
|
|
},
|
|
|
|
});
|