Chrysoblog/tests/home.spec.ts

8 lines
250 B
TypeScript
Raw Normal View History

2024-09-28 15:18:09 -07:00
import { expect, test } from '@playwright/test';
test('home page has main and background', async ({ page }) => {
await page.goto('/');
await expect(page.locator('main')).toBeVisible();
await expect(page.locator('#background')).toBeVisible();
});