Initial commit

This commit is contained in:
2023-12-24 11:38:32 +01:00
commit f71174d884
1963 changed files with 24504 additions and 0 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("/")
})
})