mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-26 02:51:57 +03:00
26 lines
913 B
TypeScript
26 lines
913 B
TypeScript
import { expect } from '@playwright/test';
|
|
|
|
import { loadPage } from './libs/load-page';
|
|
import { clickPageMoreActions } from './libs/page-logic';
|
|
import { test } from './libs/playwright';
|
|
loadPage();
|
|
|
|
test.describe('Change page mode(Page or Edgeless)', () => {
|
|
test('Switch to edgeless by switch edgeless item', async ({ page }) => {
|
|
const btn = await page.getByTestId('switch-edgeless-mode-button');
|
|
await btn.click();
|
|
|
|
const edgeless = page.locator('affine-edgeless-page');
|
|
expect(await edgeless.isVisible()).toBe(true);
|
|
});
|
|
|
|
test('Convert to edgeless by editor header items', async ({ page }) => {
|
|
await clickPageMoreActions(page);
|
|
const menusEdgelessItem = page.getByTestId('editor-option-menu-edgeless');
|
|
await menusEdgelessItem.click({ delay: 100 });
|
|
|
|
const edgeless = page.locator('affine-edgeless-page');
|
|
expect(await edgeless.isVisible()).toBe(true);
|
|
});
|
|
});
|