2023-02-06 17:26:01 +03:00
|
|
|
import type { Page } from '@playwright/test';
|
2023-03-23 07:22:29 +03:00
|
|
|
import { expect } from '@playwright/test';
|
|
|
|
|
2023-02-06 17:26:01 +03:00
|
|
|
interface CreateWorkspaceParams {
|
|
|
|
name: string;
|
|
|
|
}
|
|
|
|
export async function createWorkspace(
|
|
|
|
params: CreateWorkspaceParams,
|
|
|
|
page: Page
|
|
|
|
) {
|
|
|
|
// open workspace list modal
|
|
|
|
const workspaceName = page.getByTestId('workspace-name');
|
|
|
|
await workspaceName.click();
|
|
|
|
|
|
|
|
// open create workspace modal
|
|
|
|
await page.locator('.add-icon').click();
|
|
|
|
|
|
|
|
// input workspace name
|
|
|
|
await page.getByPlaceholder('Set a Workspace name').click();
|
|
|
|
await page.getByPlaceholder('Set a Workspace name').fill(params.name);
|
|
|
|
|
|
|
|
// click create button
|
2023-02-08 12:48:03 +03:00
|
|
|
return page.getByRole('button', { name: 'Create' }).click();
|
2023-02-06 17:26:01 +03:00
|
|
|
}
|
2023-03-23 07:22:29 +03:00
|
|
|
|
|
|
|
export async function assertCurrentWorkspaceFlavour(
|
|
|
|
flavour: 'affine' | 'local',
|
|
|
|
page: Page
|
|
|
|
) {
|
|
|
|
// @ts-expect-error type globalThis.currentWorkspace is not defined in playwright context
|
|
|
|
const actual = await page.evaluate(() => globalThis.currentWorkspace.flavour);
|
|
|
|
expect(actual).toBe(flavour);
|
|
|
|
}
|