Skip to content

Commit

Permalink
try to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
larsrickert committed Nov 25, 2024
1 parent 789bf01 commit 4872c56
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,11 @@ test("should show error message after interaction", async ({ mount, makeAxeBuild
await expect(fullError).toBeHidden();

// ACT: interact with the input
await input.focus();
await input.click();
await input.fill("2024-11-25");
await input.blur();

await input.click();
await input.press("Delete");
await input.blur();

Expand Down Expand Up @@ -146,6 +149,9 @@ test("should show correct message", async ({ mount }) => {
//ACT
await input.click();
await input.fill("2024-11-25");
await input.blur();

await input.click();
await input.press("Delete");
await input.blur();

Expand Down

0 comments on commit 4872c56

Please sign in to comment.