Skip to content

Commit

Permalink
Anpassung Integrationstest
Browse files Browse the repository at this point in the history
  • Loading branch information
SykTigera committed Dec 10, 2023
1 parent 7b57380 commit 108abfb
Showing 1 changed file with 22 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,14 @@ describe("Integration: MainPagekomponente mit kompletten positivem TransferMoney
cy.get("[data-testid='amount_input']")
.focus()
.should("have.value", "0")
.clear()
.type("100")
.clear();

cy.get("[data-testid='amount_input']")
.focus()
.type("100");

cy.get("[data-testid='amount_input']")
.focus()
.should("have.value", "100");

// Der Radiobutton für das Konto, auf welchen der Wert übertragen werden soll, wird ausgewählt.
Expand Down Expand Up @@ -119,8 +125,14 @@ describe("Integration: MainPagekomponente mit kompletten positivem TransferMoney
cy.get("[data-testid='amount_input']")
.focus()
.should("have.value", "0")
.clear()
.type("300")
.clear();

cy.get("[data-testid='amount_input']")
.focus()
.type("300");

cy.get("[data-testid='amount_input']")
.focus()
.should("have.value", "300");

// Der Radiobutton für das Konto, auf welchen der Wert übertragen werden soll, wird ausgewählt.
Expand Down Expand Up @@ -180,15 +192,16 @@ describe("Integration: MainPagekomponente mit kompletten positivem TransferMoney

// Der zu übertragende Wert = 300$ wird eingetragen
cy
.get("[data-testid='amount_input']")
cy.get("[data-testid='amount_input']")
.focus()
.should("have.value", "0")
.clear()
.type("600");
.clear();

cy.get("[data-testid='amount_input']")
.focus()
.type("600");

cy
.get("[data-testid='amount_input']")
cy.get("[data-testid='amount_input']")
.focus()
.should("have.value", "600");

Expand Down

0 comments on commit 108abfb

Please sign in to comment.