mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-17 19:10:29 +01:00
9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
|
import { test } from '@playwright/test'
|
||
|
import { createNote } from '../utils'
|
||
|
import Files from './files'
|
||
|
|
||
|
test('to big zip', async ({ page }) => {
|
||
|
const files = [Files.Zip]
|
||
|
const link = await createNote(page, { files, error: 'note is to big' })
|
||
|
})
|