mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
![]() |
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');
|
||
|
});
|