80595232d2
This PR adds a basic list of all examples to the examples site ### Change Type - [x] `internal`
73 lines
2 KiB
TypeScript
73 lines
2 KiB
TypeScript
import test from '@playwright/test'
|
|
|
|
test.describe('Routes', () => {
|
|
test('end-to-end', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/end-to-end')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('basic', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/develop')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('api', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/api')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('hide-ui', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/custom-config')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('custom-config', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/custom-config')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('custom-ui', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/custom-ui')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('exploded', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/exploded')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('scroll', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/scroll')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('multiple', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/multiple')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('error-boundary', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/error-boundary')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('user-presence', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/user-presence')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('ui-events', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/ui-events')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('store-events', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/store-events')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
|
|
test('persistence', async ({ page }) => {
|
|
await page.goto('http://localhost:5420/persistence')
|
|
await page.waitForSelector('.tl-canvas')
|
|
})
|
|
})
|