insomnia/packages/insomnia-smoke-test/playwright.config.ts
Filipe Freire aa0f225304
bump playwright to 1.30 canary (#5684)
* bump playwright to 1.29.2

* upgrade to canary

* set workers to 1

Co-authored-by: gatzjames <jamesgatzos@gmail.com>
2023-01-18 13:14:01 +02:00

42 lines
959 B
TypeScript

/* eslint-disable filenames/match-exported */
import { PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
projects: [
{
// Run all tests
name: 'Default',
testMatch: /.*.test.ts/,
retries: 0,
},
{
// High-confidence smoke/sanity checks
name: 'Smoke',
testMatch: /smoke\/.*.test.ts/,
retries: 0,
},
],
webServer: {
command: 'npm run serve',
url: 'http://127.0.0.1:4010',
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
},
use: {
trace: {
mode: 'retain-on-failure',
screenshots: true,
snapshots: true,
},
},
reporter: process.env.CI ? 'github' : 'list',
timeout: process.env.CI ? 60 * 1000 : 20 * 1000,
forbidOnly: !!process.env.CI,
outputDir: 'screenshots',
testDir: 'tests',
expect: {
timeout: process.env.CI ? 25 * 1000 : 10 * 1000,
},
workers: 1,
};
export default config;