Skip to content

Commit

Permalink
ci: fix e2e (#5329)
Browse files Browse the repository at this point in the history
  • Loading branch information
EYHN committed Dec 18, 2023
1 parent 1b5837e commit a1c9ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/affine-desktop/e2e/basic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ test('delete workspace', async ({ page }) => {
await page.waitForTimeout(1000);
await clickSideBarSettingButton(page);
await page.getByTestId('current-workspace-label').click();
expect(await page.getByTestId('workspace-name-input').inputValue()).toBe(
await expect(page.getByTestId('workspace-name-input')).toHaveValue(
'Delete Me'
);
const contentElement = page.getByTestId('setting-modal-content');
Expand Down

0 comments on commit a1c9ac8

Please sign in to comment.