feat: add review
This commit is contained in:
8
apps/showcase-e2e/src/example.spec.ts
Normal file
8
apps/showcase-e2e/src/example.spec.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { test, expect } from '@playwright/test';
|
||||
|
||||
test('has title', async ({ page }) => {
|
||||
await page.goto('/');
|
||||
|
||||
// Expect h1 to contain a substring.
|
||||
expect(await page.locator('h1').innerText()).toContain('Welcome');
|
||||
});
|
||||
Reference in New Issue
Block a user