fix: test issue (#1629)

This commit is contained in:
Himself65
2023-03-20 22:26:05 -05:00
committed by GitHub
parent 1ba750d89c
commit 0e52d8ca2b

View File

@@ -1,5 +1,4 @@
import { expect } from '@playwright/test';
import { nanoid } from 'nanoid';
import userA from '../fixtures/userA.json';
import { test } from '../libs/playwright';
@@ -28,7 +27,7 @@ test.describe('affine workspace', () => {
await openHomePage(page);
const [a] = await createFakeUser();
await loginUser(page, a);
const name = `test-${nanoid()}`;
const name = `test-${Date.now()}`;
await createWorkspace({ name }, page);
await page.waitForTimeout(50);
await clickSideBarSettingButton(page);