2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-03-24 01:15:40 +03:00
|
|
|
import { openHomePage } from '../libs/load-page';
|
2023-06-07 12:31:54 +03:00
|
|
|
import { waitEditorLoad } from '../libs/page-logic';
|
2023-03-24 01:15:40 +03:00
|
|
|
import { assertCurrentWorkspaceFlavour } from '../libs/workspace';
|
2022-12-30 16:40:15 +03:00
|
|
|
|
2023-04-17 00:02:41 +03:00
|
|
|
test('preset workspace name', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-04-17 00:02:41 +03:00
|
|
|
const workspaceName = page.getByTestId('workspace-name');
|
|
|
|
await page.waitForTimeout(1000);
|
|
|
|
expect(await workspaceName.textContent()).toBe('Demo Workspace');
|
|
|
|
await assertCurrentWorkspaceFlavour('local', page);
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|
2023-04-17 00:02:41 +03:00
|
|
|
|
|
|
|
// test('default workspace avatar', async ({ page }) => {
|
|
|
|
// const workspaceAvatar = page.getByTestId('workspace-avatar');
|
|
|
|
// expect(
|
|
|
|
// await workspaceAvatar.locator('img').getAttribute('src')
|
|
|
|
// ).not.toBeNull();
|
|
|
|
// });
|
|
|
|
test('Open language switch menu', async ({ page }) => {
|
|
|
|
await openHomePage(page);
|
2023-06-07 12:31:54 +03:00
|
|
|
await waitEditorLoad(page);
|
2023-04-28 12:28:51 +03:00
|
|
|
const editorOptionMenuButton = page.getByTestId('editor-option-menu');
|
|
|
|
await expect(editorOptionMenuButton).toBeVisible();
|
|
|
|
await editorOptionMenuButton.click();
|
2023-04-17 00:02:41 +03:00
|
|
|
const languageMenuButton = page.getByTestId('language-menu-button');
|
|
|
|
await expect(languageMenuButton).toBeVisible();
|
|
|
|
const actual = await languageMenuButton.innerText();
|
|
|
|
expect(actual).toEqual('English');
|
|
|
|
await assertCurrentWorkspaceFlavour('local', page);
|
2023-02-07 10:21:34 +03:00
|
|
|
});
|