nocobase/playwright.config.ts
被雨水过滤的空气-Rain 3c98966169
feat(e2e): add mockCollections (#3054)
* feat(e2e): add mockCollections

* fix: fix tests

* fix: make tests passing

* fix: fix tests

* fix: fix test

* chore: restart

* chore: skip some test
2023-11-17 16:54:04 +08:00

54 lines
1.4 KiB
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
timeout: process.env.CI ? 60 * 1000 : 30 * 1000,
// 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,
maxFailures: 1,
// Reporter to use
reporter: process.env.PLAYWRIGHT_SKIP_REPORTER
? undefined
: [['html', { outputFolder: './playwright/tests-report' }]],
outputDir: './playwright/test-results',
use: {
// Base URL to use in actions like `await page.goto('/')`.
baseURL: process.env.APP_BASE_URL || `http://localhost:${process.env.APP_PORT || 20000}`,
// 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'],
},
],
});