2023-09-27 12:00:17 +00:00
|
|
|
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
|
|
|
|
export default defineConfig({
|
2023-11-01 04:00:28 +00:00
|
|
|
timeout: process.env.CI ? 60 * 1000 : 30 * 1000,
|
2023-09-27 12:00:17 +00:00
|
|
|
|
|
|
|
// Look for test files in the "tests" directory, relative to this configuration file.
|
|
|
|
testDir: 'packages',
|
|
|
|
|
|
|
|
testMatch: /.*\/e2e\/.+\.test\.[tj]sx*$/,
|
|
|
|
|
|
|
|
// Run all tests in parallel.
|
|
|
|
fullyParallel: true,
|
|
|
|
|
|
|
|
// 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: process.env.CI ? 1 : undefined,
|
|
|
|
workers: 1,
|
|
|
|
|
2023-11-17 08:54:04 +00:00
|
|
|
maxFailures: 1,
|
|
|
|
|
2023-09-27 12:00:17 +00:00
|
|
|
// Reporter to use
|
2023-11-16 04:33:56 +00:00
|
|
|
reporter: process.env.PLAYWRIGHT_SKIP_REPORTER
|
|
|
|
? undefined
|
|
|
|
: [['html', { outputFolder: './playwright/tests-report' }]],
|
2023-09-27 12:00:17 +00:00
|
|
|
|
|
|
|
outputDir: './playwright/test-results',
|
|
|
|
|
|
|
|
use: {
|
|
|
|
// Base URL to use in actions like `await page.goto('/')`.
|
2023-11-14 02:04:09 +00:00
|
|
|
baseURL: process.env.APP_BASE_URL || `http://localhost:${process.env.APP_PORT || 20000}`,
|
2023-09-27 12:00:17 +00:00
|
|
|
|
|
|
|
// Collect trace when retrying the failed test.
|
|
|
|
trace: 'on-first-retry',
|
|
|
|
},
|
|
|
|
// Configure projects for major browsers.
|
|
|
|
projects: [
|
|
|
|
{
|
|
|
|
name: 'authSetup',
|
|
|
|
testDir: './scripts',
|
|
|
|
testMatch: 'auth.setup.ts',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'chromium',
|
|
|
|
use: { ...devices['Desktop Chrome'], storageState: 'playwright/.auth/admin.json' },
|
|
|
|
dependencies: ['authSetup'],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|