mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-23 01:32:56 +03:00
64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
|
import {
|
|
clickNewPageButton,
|
|
clickPageMoreActions,
|
|
getBlockSuiteEditorTitle,
|
|
getPageOperationButton,
|
|
waitForEditorLoad,
|
|
} from '@affine-test/kit/utils/page-logic';
|
|
import { getCurrentDocIdFromUrl } from '@affine-test/kit/utils/url';
|
|
import { expect } from '@playwright/test';
|
|
|
|
test('New a page ,then open it and show delete modal', 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 to delete');
|
|
await page.getByTestId('all-pages').click();
|
|
const cell = page
|
|
.getByTestId('page-list-item')
|
|
.getByText('this is a new page to delete');
|
|
expect(cell).not.toBeUndefined();
|
|
|
|
await cell.click();
|
|
await clickPageMoreActions(page);
|
|
const deleteBtn = page.getByTestId('editor-option-menu-delete');
|
|
await deleteBtn.click();
|
|
const confirmTip = page.getByText('Delete page?');
|
|
expect(confirmTip).not.toBeUndefined();
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
expect(currentWorkspace.meta.flavour).toContain('local');
|
|
});
|
|
|
|
test('New a page ,then go to all pages and show delete modal', 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 to delete');
|
|
const newPageId = getCurrentDocIdFromUrl(page);
|
|
await page.getByTestId('all-pages').click();
|
|
const cell = page.getByRole('cell', {
|
|
name: 'this is a new page to delete',
|
|
});
|
|
expect(cell).not.toBeUndefined();
|
|
|
|
await getPageOperationButton(page, newPageId).click();
|
|
const deleteBtn = page.getByTestId('move-to-trash');
|
|
await deleteBtn.click();
|
|
const confirmTip = page.getByText('Delete page?');
|
|
expect(confirmTip).not.toBeUndefined();
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
expect(currentWorkspace.meta.flavour).toContain('local');
|
|
});
|