skip size

This commit is contained in:
Niccolo Borgioli 2024-08-27 13:26:04 +02:00
parent b5590bb5ef
commit 9527a499ed
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ const config: PlaywrightTestConfig = {
outputDir: './test-results', outputDir: './test-results',
testDir: './test', testDir: './test',
timeout: 30_000, timeout: 30_000,
fullyParallel: true,
retries: 2, retries: 2,
webServer: { webServer: {

View File

@ -3,7 +3,7 @@ import { Files } from '../../files'
import { createNoteError } from '../../utils' import { createNoteError } from '../../utils'
test.describe('@web', () => { test.describe('@web', () => {
test('to big zip', async ({ page }) => { test.skip('to big zip', async ({ page }) => {
const files = [Files.Zip] const files = [Files.Zip]
await createNoteError(page, { files }, 'could not create note. note is too big') await createNoteError(page, { files }, 'could not create note. note is too big')
}) })