AFFiNE/tests/affine-desktop/playwright.config.ts

56 lines
1.2 KiB
TypeScript
Raw Normal View History

import assert from 'node:assert';
import { testResultDir } from '@affine-test/kit/playwright';
2023-04-25 02:53:36 +03:00
import type { PlaywrightTestConfig } from '@playwright/test';
// import { devices } from '@playwright/test';
/**
* Read environment variables from file.
* https://github.com/motdotla/dotenv
*/
// require('dotenv').config();
/**
* See https://playwright.dev/docs/test-configuration.
*/
const config: PlaywrightTestConfig = {
testDir: './e2e',
2023-04-25 02:53:36 +03:00
fullyParallel: true,
workers: 1,
2023-04-25 02:53:36 +03:00
timeout: process.env.CI ? 50_000 : 30_000,
expect: {
timeout: process.env.CI ? 15_000 : 5_000,
},
outputDir: testResultDir,
2023-04-25 02:53:36 +03:00
use: {
viewport: { width: 1440, height: 800 },
trace: 'on-first-retry',
2023-04-25 02:53:36 +03:00
},
};
if (process.env.CI) {
config.retries = 3;
config.workers = '50%';
}
if (process.env.DEV_SERVER_URL) {
const devServerUrl = new URL(process.env.DEV_SERVER_URL);
assert(
devServerUrl.origin === 'http://localhost:8080',
'DEV_SERVER_URL must be http://localhost:8080'
);
config.webServer = [
{
command: 'yarn run start:web-static',
port: 8080,
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
env: {
COVERAGE: process.env.COVERAGE || 'false',
},
},
];
}
2023-04-25 02:53:36 +03:00
export default config;