Skip to content

Commit

Permalink
Fix infinite loops in spec
Browse files Browse the repository at this point in the history
  • Loading branch information
mattvague committed Oct 28, 2024
1 parent 4fad414 commit b764f78
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/cypress/integration/directives/x-on.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -770,11 +770,11 @@ test(
get("@button").trigger("click", {});
get("@alt").should(notBeChecked());
get("@button").trigger("click", { ctrlKey: true, shiftKey: true, metaKey: true, altKey: true });
get("@shift").as("shift").should(beChecked());
get("@ctrl").as("ctrl").should(beChecked());
get("@meta").as("meta").should(beChecked());
get("@alt").as("alt").should(beChecked());
get("@cmd").as("cmd").should(beChecked());
get("@shift").should(beChecked());
get("@ctrl").should(beChecked());
get("@meta").should(beChecked());
get("@alt").should(beChecked());
get("@cmd").should(beChecked());
}
);

Expand Down

0 comments on commit b764f78

Please sign in to comment.