mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-12-23 00:36:28 +00:00
Nicco
d7e5a34b14
* move to packages * update deps * update deps * actions maintenance * don't use blob * cli * fix default import * use synthetic default imports * remove comment * cli packaging * node 18 guard * packages * build system * testing * test pipeline * pipelines * changelog * version bump * update locales * update deps * update deps * update dependecies
21 lines
904 B
TypeScript
21 lines
904 B
TypeScript
import { test } from '@playwright/test'
|
|
import { checkLinkDoesNotExist, checkLinkForText, createNote } from '../../utils'
|
|
|
|
test.describe('@web', () => {
|
|
test('only shown once', async ({ page }) => {
|
|
const text = `Christian victorious reason suicide dead. Right ultimate gains god hope truth burying selfish society joy. Ultimate.`
|
|
const shareLink = await createNote(page, { text })
|
|
await checkLinkForText(page, shareLink, text)
|
|
await checkLinkDoesNotExist(page, shareLink)
|
|
})
|
|
|
|
test('view 3 times', async ({ page }) => {
|
|
const text = `Justice holiest overcome fearful strong ultimate holiest christianity.`
|
|
const shareLink = await createNote(page, { text, views: 3 })
|
|
await checkLinkForText(page, shareLink, text)
|
|
await checkLinkForText(page, shareLink, text)
|
|
await checkLinkForText(page, shareLink, text)
|
|
await checkLinkDoesNotExist(page, shareLink)
|
|
})
|
|
})
|