mindmap / apps /web-e2e /src /example.spec.ts
manhteky123's picture
Upload 213 files
60f878e verified
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();
});