cryptgeon/test/web/file/too-big.spec.ts

11 lines
295 B
TypeScript
Raw Normal View History

import { test } from '@playwright/test'
import { Files } from '../../files'
2024-08-27 00:09:51 +02:00
import { createNoteError } from '../../utils'
test.describe('@web', () => {
2024-08-23 14:27:52 +02:00
test('to big zip', async ({ page }) => {
const files = [Files.Zip]
2024-08-27 00:09:51 +02:00
await createNoteError(page, { files }, 'note is to big')
})
})