Spaces:
Sleeping
Sleeping
File size: 287 Bytes
60f878e |
1 2 3 4 5 6 7 8 9 10 |
import { test, expect } from '@playwright/test';
test('has title', async ({ page }) => {
await page.goto('/');
// Expect h1 to contain a substring.
expect(await page.title()).toContain('Drawnix - 开源白板工具');
expect(page.locator('drawnix')).toBeTruthy();
});
|