insomnia/packages/insomnia-smoke-test/playwright.config.ts
Filipe Freire 7b3d04c830
chore: smoketests ubuntu only (#6255)
* chore: smoketests ubuntu only

* rename screenshot to traces

---------

Co-authored-by: jackkav <jackkav@gmail.com>
2023-08-10 17:53:18 +02:00

42 lines
954 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: 'traces',
testDir: 'tests',
expect: {
timeout: process.env.CI ? 25 * 1000 : 10 * 1000,
},
workers: 1,
};
export default config;