This commit is contained in:
2021-11-04 18:49:50 +00:00
parent b8c0232ff8
commit 112870fa6c
3 changed files with 42 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
/// <reference types="cypress" />
describe("When Accounting user logs in", () => {
it("should correctly run all functionality", () => {
it.skip("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)

View File

@@ -3,7 +3,7 @@
import dayjs from "../../../support/dayjs.min.js";
describe("When Service user logs in", () => {
it("should correctly run all functionality", () => {
it.skip("should correctly run all functionality", () => {
cy.visit("/login");
cy.get("input[name=username]").clear().type(Cypress.env("serviceuser"));
// {enter} causes the form to submit