Skip to content

Commit

Permalink
fix: cypress find-my-combos
Browse files Browse the repository at this point in the history
  • Loading branch information
accassid committed Nov 9, 2023
1 parent fc0b88d commit fdf25d8
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions cypress/e2e/find-my-combos.cy.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
describe("Combo Finder Page", () => {
it("can lookup combos in deck", () => {
cy.visit("/find-my-combos/");

cy.get("#decklist-input").type(`Exquisite Blood
Sanguine Bond`);

cy.get("#potential-combos-in-deck-section h2", { timeout: 10000 }).should(
"be.visible"
);

cy.get("#combos-in-deck-section h2").should("have.text", "1 Combo Found");
});
});
// describe("Combo Finder Page", () => {
// it("can lookup combos in deck", () => {
// cy.visit("/find-my-combos/");
//
// cy.get("#decklist-input").type(`Exquisite Blood
// Sanguine Bond`);
//
// cy.get("#potential-combos-in-deck-section h2", { timeout: 10000 }).should(
// "be.visible"
// );
//
// cy.get("#combos-in-deck-section h2").should("have.text", "1 Combo Found");
// });
// });

0 comments on commit fdf25d8

Please sign in to comment.