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',
testDir: './test',
timeout: 30_000,
fullyParallel: true,
retries: 2,
webServer: {

View File

@ -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')
})