mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-01 12:54:18 +01:00
11 lines
324 B
TypeScript
11 lines
324 B
TypeScript
import { test } from '@playwright/test'
|
|
import { Files } from '../../files'
|
|
import { createNoteError } from '../../utils'
|
|
|
|
test.describe('@web', () => {
|
|
test.skip('to big zip', async ({ page }) => {
|
|
const files = [Files.Zip]
|
|
await createNoteError(page, { files }, 'could not create note. note is too big')
|
|
})
|
|
})
|