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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 9 deletions

View File

@ -1,6 +1,5 @@
import { Breadcrumbs, IconButton, ListSkeleton } from '@affine/component';
import { SearchIcon } from '@blocksuite/icons';
import { Box } from '@mui/material';
import { useAtomValue, useSetAtom } from 'jotai';
import dynamic from 'next/dynamic';
import { useRouter } from 'next/router';
@ -68,11 +67,6 @@ const ListPageInner: React.FC<{
<span>{name}</span>
</StyledBreadcrumbs>
</Breadcrumbs>
<Box
sx={{
flex: 1,
}}
/>
<IconButton onClick={handleOpen}>
<SearchIcon />
</IconButton>

View File

@ -25,7 +25,7 @@ export const NavContainer = styled('div')(({ theme }) => {
return {
width: '100vw',
height: '60px',
...displayFlex('start', 'center'),
...displayFlex('space-between', 'center'),
backgroundColor: theme.colors.pageBackground,
};
});

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();
});
});