2023-04-25 06:12:48 +03:00
|
|
|
import { test } from '@affine-test/kit/playwright';
|
2023-07-13 12:05:01 +03:00
|
|
|
import { openHomePage } from '@affine-test/kit/utils/load-page';
|
2023-09-02 06:31:07 +03:00
|
|
|
import { waitForEditorLoad } from '@affine-test/kit/utils/page-logic';
|
2023-02-05 13:41:18 +03:00
|
|
|
import { expect } from '@playwright/test';
|
2023-02-17 10:33:32 +03:00
|
|
|
|
2023-07-13 15:41:46 +03:00
|
|
|
test('preset workspace name', async ({ page, workspace }) => {
|
2023-04-17 00:02:41 +03:00
|
|
|
await openHomePage(page);
|
2023-09-02 06:31:07 +03:00
|
|
|
await waitForEditorLoad(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');
|
2023-07-13 15:41:46 +03:00
|
|
|
const currentWorkspace = await workspace.current();
|
|
|
|
|
|
|
|
expect(currentWorkspace.flavour).toContain('local');
|
2022-12-30 16:40:15 +03:00
|
|
|
});
|