fix: test error (#1628)

This commit is contained in:
Himself65 2023-03-20 21:58:23 -05:00 committed by GitHub
parent b3206b1682
commit 1ba750d89c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 2 deletions

View File

@ -86,6 +86,8 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Use Node.js 18
uses: actions/setup-node@v3
with:

View File

@ -55,6 +55,7 @@
"happy-dom": "^8.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"nanoid": "^4.0.1",
"nyc": "^15.1.0",
"prettier": "^2.8.5",
"react": "^18.2.0",

View File

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

View File

@ -7390,6 +7390,7 @@ __metadata:
happy-dom: ^8.9.0
husky: ^8.0.3
lint-staged: ^13.2.0
nanoid: ^4.0.1
nyc: ^15.1.0
prettier: ^2.8.5
react: ^18.2.0