mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-30 04:05:07 +03:00
35fb10c95b
Co-authored-by: Himself65 <himself65@outlook.com>
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
import { test } from '@affine-test/kit/playwright';
|
|
import { expect } from '@playwright/test';
|
|
|
|
import { openHomePage } from '../libs/load-page';
|
|
import { clickPageMoreActions, waitEditorLoad } from '../libs/page-logic';
|
|
|
|
test('Switch to edgeless by switch edgeless item', async ({ page }) => {
|
|
async function getCount(): Promise<number> {
|
|
return page.evaluate(() => {
|
|
return globalThis.__toastCount;
|
|
});
|
|
}
|
|
await openHomePage(page);
|
|
await waitEditorLoad(page);
|
|
const btn = await page.getByTestId('switch-edgeless-mode-button');
|
|
await page.evaluate(() => {
|
|
globalThis.__toastCount = 0;
|
|
window.addEventListener('affine-toast:emit', () => {
|
|
globalThis.__toastCount++;
|
|
});
|
|
});
|
|
await btn.click();
|
|
await page.waitForTimeout(100);
|
|
{
|
|
const count = await getCount();
|
|
expect(count).toBe(1);
|
|
}
|
|
const edgeless = page.locator('affine-edgeless-page');
|
|
expect(await edgeless.isVisible()).toBe(true);
|
|
|
|
const editorWrapperPadding = await page
|
|
.locator('.editor-wrapper.edgeless-mode')
|
|
.evaluate(element => {
|
|
return window.getComputedStyle(element).getPropertyValue('padding');
|
|
});
|
|
expect(editorWrapperPadding).toBe('0px');
|
|
{
|
|
const count = await getCount();
|
|
expect(count).toBe(1);
|
|
}
|
|
await btn.click();
|
|
await btn.click();
|
|
await btn.click();
|
|
await page.waitForTimeout(100);
|
|
{
|
|
const count = await getCount();
|
|
expect(count).toBe(1);
|
|
}
|
|
});
|
|
|
|
test('Convert to edgeless by editor header items', async ({ page }) => {
|
|
await openHomePage(page);
|
|
await waitEditorLoad(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);
|
|
});
|