mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-23 16:56:28 +00:00
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
|
import { test } from '@playwright/test'
|
||
|
import { createNote } from '../../utils'
|
||
|
import Files from './files'
|
||
|
|
||
|
test.describe('@web', () => {
|
||
|
test.skip('to big zip', async ({ page }) => {
|
||
|
const files = [Files.Zip]
|
||
|
const link = await createNote(page, { files, error: 'note is to big' })
|
||
|
})
|
||
|
})
|