Ignore unit tests when running Playwright Electron (#5996)

* Ignore unit tests when running Playwright Electron

* Skip a couple more Windows tests for now
This commit is contained in:
Jace Browning
2025-03-25 20:59:07 -04:00
committed by GitHub
parent a15565682d
commit 736533a482
3 changed files with 17 additions and 6 deletions

View File

@ -7,6 +7,7 @@ import { platform } from 'os'
export default defineConfig({
timeout: 120_000, // override the default 30s timeout
testDir: './e2e/playwright',
testIgnore: '*.test.ts', // ignore unit tests
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */