cypress and instanbul

This commit is contained in:
2021-09-14 14:45:47 +02:00
parent 786fd12f34
commit f9fe8fd735
15 changed files with 618 additions and 26 deletions

View File

@@ -0,0 +1,22 @@
/// <reference types="cypress" />
const { before } = require("../../support")
// @ts-check
describe("renz einfo auth", () => {
beforeEach(() => {
before()
})
afterEach(function () {
if (this.currentTest.state === "failed") {
cy.setCookie("shouldSkip", "true")
Cypress.runner.stop()
}
})
it("can visit homepage", () => {
cy.visit("/")
})
})