|
| 1 | +// @ts-check |
| 2 | +require("dotenv").config({ path: ".env.testing" }); |
| 3 | +const { defineConfig, devices } = require("@playwright/test"); |
| 4 | +const { BASE_URL } = process.env; |
| 5 | + |
| 6 | +/** |
| 7 | + * @see https://playwright.dev/docs/test-configuration |
| 8 | + */ |
| 9 | +module.exports = defineConfig({ |
| 10 | + testDir: "./src/examples", |
| 11 | + // testDir: './src/examples', |
| 12 | + /* Run tests in files in parallel */ |
| 13 | + fullyParallel: false, |
| 14 | + /* Fail the build on CI if you accidentally left test.only in the source code. */ |
| 15 | + forbidOnly: !!process.env.CI, |
| 16 | + /* Retry on CI only */ |
| 17 | + retries: process.env.CI ? 1 : 0, |
| 18 | + /* Opt out of parallel tests on CI. */ |
| 19 | + workers: process.env.CI ? 1 : undefined, |
| 20 | + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ |
| 21 | + reporter: [["html", { outputFolder: "playwright-report", open: "never" }]], |
| 22 | + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ |
| 23 | + use: { |
| 24 | + /* Base URL to use in actions like `await page.goto('/')`. */ |
| 25 | + baseURL: BASE_URL, |
| 26 | + |
| 27 | + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ |
| 28 | + trace: "on-first-retry", |
| 29 | + }, |
| 30 | + |
| 31 | + /* Configure projects for major browsers */ |
| 32 | + projects: [ |
| 33 | + { |
| 34 | + name: "chromium", |
| 35 | + use: { ...devices["Desktop Chrome"] }, |
| 36 | + }, |
| 37 | + |
| 38 | + // { |
| 39 | + // name: 'firefox', |
| 40 | + // use: { ...devices['Desktop Firefox'] }, |
| 41 | + // }, |
| 42 | + // |
| 43 | + // { |
| 44 | + // name: 'webkit', |
| 45 | + // use: { ...devices['Desktop Safari'] }, |
| 46 | + // }, |
| 47 | + |
| 48 | + /* Test against mobile viewports. */ |
| 49 | + // { |
| 50 | + // name: 'Mobile Chrome', |
| 51 | + // use: { ...devices['Pixel 5'] }, |
| 52 | + // }, |
| 53 | + // { |
| 54 | + // name: 'Mobile Safari', |
| 55 | + // use: { ...devices['iPhone 12'] }, |
| 56 | + // }, |
| 57 | + |
| 58 | + /* Test against branded browsers. */ |
| 59 | + // { |
| 60 | + // name: 'Microsoft Edge', |
| 61 | + // use: { ...devices['Desktop Edge'], channel: 'msedge' }, |
| 62 | + // }, |
| 63 | + // { |
| 64 | + // name: 'Google Chrome', |
| 65 | + // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, |
| 66 | + // }, |
| 67 | + ], |
| 68 | + |
| 69 | + /* Run your local dev server before starting the tests */ |
| 70 | + // webServer: { |
| 71 | + // command: 'npm run start', |
| 72 | + // url: 'http://127.0.0.1:3000', |
| 73 | + // reuseExistingServer: !process.env.CI, |
| 74 | + // }, |
| 75 | +}); |
0 commit comments