This commit is contained in:
2021-11-04 19:57:20 +00:00
parent 112870fa6c
commit cb1f5f21b0
4 changed files with 16 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
/// <reference types="cypress" />
describe("When Accounting user logs in", () => {
it.skip("should correctly run all functionality", () => {
it("should correctly run all functionality", () => {
//format for typing input and setting value is always YYYY-MM-DD for date and HH:MM in 24 hour time for time
const dNow = new Date();
const dToday = `${dNow.getFullYear()}-${(dNow.getMonth() + 1)
@@ -248,7 +248,7 @@ describe("When Accounting user logs in", () => {
);
cy.get("[data-cy=charge]").type("2.00");
cy.get("[data-cy=cost]").type("1.00");
cy.chooseVSelect("unit", "km");
cy.get("[data-cy=unit]").type("{downarrow}{enter}");//choose first in list
cy.get("[data-cy=notes]").type(`Test trvl rate NOTES!!!{enter}eot{enter}`);
cy.get("[data-cy='travel-rate-edit:save'] > .v-btn__content").click();
cy.get("[data-cy=navicon]").click();