Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
heyman committed Dec 25, 2023
1 parent 694c370 commit 60790f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/basic-editing.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test('load heynote', async ({ page }) => {
await page.locator('body').pressSequentially('Hello World!')
await page.locator("body").press("Enter")
//await page.waitForTimeout(100);
await page.locator("body").press(heynotePage.isMac ? "Meta+Enter" : "Ctrl+Enter")
await page.locator("body").press(heynotePage.isMac ? "Meta+Enter" : "Control+Enter")
await page.waitForTimeout(100);

expect((await heynotePage.getBlocks()).length).toBe(2)
Expand Down

0 comments on commit 60790f0

Please sign in to comment.