test: open public workspace (#1736)

This commit is contained in:
Himself65
2023-03-28 22:49:46 -05:00
committed by GitHub
parent 62955e7de4
commit 998587b3b8
3 changed files with 7 additions and 9 deletions

View File

@@ -8,14 +8,14 @@ import { createFakeUser, loginUser, openHomePage } from '../../libs/utils';
import { createWorkspace } from '../../libs/workspace';
test.describe('affine public workspace', () => {
test('enable public workspace', async ({ page }) => {
test('enable public workspace', async ({ page, context }) => {
await openHomePage(page);
await waitMarkdownImported(page);
const [a] = await createFakeUser();
await loginUser(page, a);
const name = `test-${Date.now()}`;
await createWorkspace({ name }, page);
await page.waitForTimeout(50);
await waitMarkdownImported(page);
await clickSideBarSettingButton(page);
await page.waitForTimeout(50);
await clickPublishPanel(page);
@@ -32,5 +32,9 @@ test.describe('affine public workspace', () => {
expect(url.startsWith('http://localhost:8080/public-workspace/')).toBe(
true
);
const page2 = await context.newPage();
await page2.goto(url);
await page2.waitForSelector('thead');
await page2.getByText('Welcome to AFFiNE').click();
});
});