mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 16:03:52 +00:00
de9a7a87fd
* refactor(project structure): UI * refactor(project structure): extract utilities * refactor(project structure): remove unused * refactor(project structure): electron * refactor(project structure): server refactor: migrate to vitest refactor: monorepo config * refactor: extract application menu * refactor: exit process * refactor: extract tray menu * chore: electron build * Added Seconds in studio clock #282 --------- Co-authored-by: Fabian Posenau <fabian@fphome.de> --------- Co-authored-by: Fabian Posenau <fabian.p99@gmx.de> Co-authored-by: Fabian Posenau <fabian@fphome.de>
63 lines
1.2 KiB
TypeScript
63 lines
1.2 KiB
TypeScript
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/tests',
|
|
timeout: 60 * 1000,
|
|
expect: {
|
|
timeout: 5000
|
|
},
|
|
fullyParallel: true,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: process.env.CI ? 1 : undefined,
|
|
reporter: 'html',
|
|
use: {
|
|
screenshot: 'only-on-failure',
|
|
viewport: { width: 1920, height: 1080 },
|
|
actionTimeout: 5000,
|
|
baseURL: 'http://localhost:4001',
|
|
ignoreHTTPSErrors: true,
|
|
trace: 'on-first-retry',
|
|
},
|
|
webServer: {
|
|
command: "pnpm dev:server"
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
},
|
|
},
|
|
|
|
{
|
|
name: 'firefox',
|
|
testMatch: /.*.spec.all.ts/,
|
|
use: {
|
|
...devices['Desktop Firefox'],
|
|
},
|
|
},
|
|
|
|
{
|
|
name: 'webkit',
|
|
testMatch: /.*.spec.ts/,
|
|
use: {
|
|
...devices['Desktop Safari'],
|
|
},
|
|
},
|
|
],
|
|
outputDir: 'test-results/',
|
|
};
|
|
|
|
export default config;
|