mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 04:21:56 +03:00
39 lines
1.3 KiB
TypeScript
39 lines
1.3 KiB
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
import {
|
|
clickNewPageButton,
|
|
getBlockSuiteEditorTitle,
|
|
waitForEditorLoad,
|
|
} from '@affine-test/kit/utils/page-logic';
|
|
import { getCurrentDocIdFromUrl } from '@affine-test/kit/utils/url';
|
|
import { expect } from '@playwright/test';
|
|
|
|
test('click btn new page', async ({ page, workspace }) => {
|
|
await openHomePage(page);
|
|
await waitForEditorLoad(page);
|
|
const originPageId = getCurrentDocIdFromUrl(page);
|
|
await clickNewPageButton(page);
|
|
const newPageId = getCurrentDocIdFromUrl(page);
|
|
expect(newPageId).not.toBe(originPageId);
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
expect(currentWorkspace.meta.flavour).toContain('local');
|
|
});
|
|
|
|
test('click btn bew page and find it in all pages', async ({
|
|
page,
|
|
workspace,
|
|
}) => {
|
|
await openHomePage(page);
|
|
await waitForEditorLoad(page);
|
|
await clickNewPageButton(page);
|
|
await getBlockSuiteEditorTitle(page).click();
|
|
await getBlockSuiteEditorTitle(page).fill('this is a new page');
|
|
await page.getByTestId('all-pages').click();
|
|
const cell = page.getByRole('cell', { name: 'this is a new page' });
|
|
expect(cell).not.toBeUndefined();
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
expect(currentWorkspace.meta.flavour).toContain('local');
|
|
});
|