mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-17 11:07:04 +01:00
Nicco
c3b1772728
* testing * try playwrigth * testing * add pr support * not on each commit * add test ids * make backend more configuratble * 2.0.2 * spec
15 lines
578 B
TypeScript
15 lines
578 B
TypeScript
import { test } from '@playwright/test'
|
|
import { checkLinkDoesNotExist, checkLinkForText, createNote } from '../utils'
|
|
|
|
test('1 minute', async ({ page }) => {
|
|
const text = `Virtues value ascetic revaluation sea dead strong burying.`
|
|
const minutes = 1
|
|
const timeout = minutes * 60_000
|
|
test.setTimeout(timeout * 2)
|
|
const shareLink = await createNote(page, { text, expiration: minutes })
|
|
await checkLinkForText(page, shareLink, text)
|
|
await checkLinkForText(page, shareLink, text)
|
|
await page.waitForTimeout(timeout)
|
|
await checkLinkDoesNotExist(page, shareLink)
|
|
})
|