2024-11-08 11:55:54 +03:00
import { devices , type PlaywrightTestConfig } from '@playwright/test' ;
2022-09-02 22:18:23 +03:00
2024-11-12 23:07:09 +03:00
const BASE_URL = process . env . GITEA_URL ? . replace ? . ( /\/$/g , '' ) || 'http://localhost:3003' ;
2022-09-02 22:18:23 +03:00
/ * *
* @see https : //playwright.dev/docs/test-configuration
* @type { import ( '@playwright/test' ) . PlaywrightTestConfig }
* /
export default {
testDir : './tests/e2e/' ,
2024-11-08 11:55:54 +03:00
testMatch : /.*\.test\.e2e\.ts/ , // Match any .test.e2e.js files
2022-09-02 22:18:23 +03:00
2024-09-11 15:31:46 +03:00
// you can adjust this value locally to match your machine's power,
// or pass `--workers x` to playwright
2024-11-12 23:07:09 +03:00
workers : 1 ,
2024-02-16 19:59:02 +03:00
2022-09-02 22:18:23 +03:00
/* Maximum time one test can run for. */
timeout : 30 * 1000 ,
expect : {
/ * *
* Maximum time expect ( ) should wait for the condition to be met .
* For example in ` await expect(locator).toHaveText(); `
* /
2024-11-12 23:07:09 +03:00
timeout : 3000 ,
2022-09-02 22:18:23 +03:00
} ,
/* Fail the build on CI if you accidentally left test.only in the source code. */
2022-10-10 15:02:20 +03:00
forbidOnly : Boolean ( process . env . CI ) ,
2022-09-02 22:18:23 +03:00
/* Retry on CI only */
2024-09-11 15:31:46 +03:00
retries : process.env.CI ? 1 : 0 ,
2024-11-12 23:07:09 +03:00
/* fail fast */
maxFailures : process.env.CI ? 1 : 0 ,
2022-09-02 22:18:23 +03:00
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter : process.env.CI ? 'list' : [ [ 'list' ] , [ 'html' , { outputFolder : 'tests/e2e/reports/' , open : 'never' } ] ] ,
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use : {
headless : true , // set to false to debug
locale : 'en-US' ,
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
2024-11-12 23:07:09 +03:00
actionTimeout : 3000 ,
2022-09-02 22:18:23 +03:00
/* Maximum time allowed for navigation, such as `page.goto()`. */
2024-08-27 16:36:39 +03:00
navigationTimeout : 10 * 1000 ,
2022-09-02 22:18:23 +03:00
/* Base URL to use in actions like `await page.goto('/')`. */
baseURL : BASE_URL ,
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace : 'on-first-retry' ,
screenshot : 'only-on-failure' ,
} ,
/* Configure projects for major browsers */
projects : [
{
name : 'chromium' ,
/* Project-specific settings. */
use : {
. . . devices [ 'Desktop Chrome' ] ,
} ,
} ,
2024-02-16 20:34:43 +03:00
{
name : 'firefox' ,
use : {
. . . devices [ 'Desktop Firefox' ] ,
} ,
} ,
2022-09-02 22:18:23 +03:00
{
name : 'webkit' ,
use : {
. . . devices [ 'Desktop Safari' ] ,
} ,
} ,
/* Test against mobile viewports. */
{
name : 'Mobile Chrome' ,
use : {
. . . devices [ 'Pixel 5' ] ,
} ,
} ,
{
name : 'Mobile Safari' ,
use : {
. . . devices [ 'iPhone 12' ] ,
} ,
} ,
] ,
2024-11-12 23:07:09 +03:00
/* Folder for test artifacts created during test execution such as screenshots, traces, etc. */
2022-09-02 22:18:23 +03:00
outputDir : 'tests/e2e/test-artifacts/' ,
2024-11-12 23:07:09 +03:00
/* Folder for explicit snapshots for visual testing */
2022-09-02 22:18:23 +03:00
snapshotDir : 'tests/e2e/test-snapshots/' ,
2024-11-08 11:55:54 +03:00
} satisfies PlaywrightTestConfig ;