1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-11-22 18:00:06 +01:00
blog/test/e2e/thanks.spec.ts
Matthias Kretschmann 05ad0470c2
migrate to biome (#944)
* migrate to biome

* cleanup

* fix

* use tsx

* script tweaks

* fix test runs

* path tweaks
2024-07-27 21:15:05 +01:00

17 lines
459 B
TypeScript

import { expect, test } from '@playwright/test'
test.beforeEach(async ({ page }) => {
await page.goto('/thanks/')
})
test('meta is correct', async ({ page }) => {
await expect(page).toHaveTitle(/Thanks/)
})
test('rainbowkit modal works', async ({ page }) => {
// open and close modal
await expect(page.getByTestId('rk-connect-button')).toBeVisible()
await page.getByTestId('rk-connect-button').click()
await page.getByLabel('Close').click()
})