Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/cloudflare-workers/e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ test('Should return 200 response - /', async ({ page }) => {

const contentH4 = await page.textContent('h4')
expect(contentH4).toBe('Extra is stuff')

const contentH5 = await page.textContent('h5')
expect(contentH5).toBe('Var in Variables is My variable set in c.set')
})

test('Should return 200 response - /api', async ({ page }) => {
Expand Down