mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
test('index page has a searchbar', async ({ page }) => {
|
|
await page.goto('/');
|
|
await expect(page.getByRole('searchbox')).toBeVisible();
|
|
});
|