mirror your GitHub repos to tangled.org automatically
1

Configure Feed

Select the types of activity you want to include in your feed.

at main 311 B View raw
1import { expect, test } from '@nuxt/test-utils/playwright' 2 3test('home page', async ({ page }) => { 4 await page.goto('/') 5 await expect(page).toHaveScreenshot() 6}) 7 8test('og image for home page', async ({ page }) => { 9 await page.goto('/__og-image__/image/og.png') 10 await expect(page).toHaveScreenshot() 11})