mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-28 19:12:07 +03:00
13 lines
407 B
TypeScript
13 lines
407 B
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import { expect } from '@playwright/test';
|
|
|
|
test('should have page0', async ({ page }) => {
|
|
await page.goto('http://localhost:8080/_debug/init-page?type=importMarkdown');
|
|
await page.waitForSelector('v-line');
|
|
const pageId = await page.evaluate(async () => {
|
|
// @ts-ignore
|
|
return globalThis.page.id;
|
|
});
|
|
expect(pageId).toBe('page0');
|
|
});
|