test: make workspace list tests stable

This commit is contained in:
tzhangchi
2023-02-08 17:48:03 +08:00
parent 4e1f812160
commit 6fa0820734
2 changed files with 7 additions and 5 deletions

View File

@@ -18,7 +18,5 @@ export async function createWorkspace(
await page.getByPlaceholder('Set a Workspace name').fill(params.name);
// click create button
await page.getByRole('button', { name: 'Create' }).click();
return page.waitForTimeout(300);
return page.getByRole('button', { name: 'Create' }).click();
}