diff --git a/playwright.config.ts b/playwright.config.ts index 4d56785..4f90354 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -10,6 +10,7 @@ const config: PlaywrightTestConfig = { outputDir: './test-results', testDir: './test', timeout: 30_000, + fullyParallel: true, retries: 2, webServer: { diff --git a/test/web/file/too-big.spec.ts b/test/web/file/too-big.spec.ts index 8796be7..2910740 100644 --- a/test/web/file/too-big.spec.ts +++ b/test/web/file/too-big.spec.ts @@ -3,7 +3,7 @@ import { Files } from '../../files' import { createNoteError } from '../../utils' test.describe('@web', () => { - test('to big zip', async ({ page }) => { + test.skip('to big zip', async ({ page }) => { const files = [Files.Zip] await createNoteError(page, { files }, 'could not create note. note is too big') })