Loading .gitlab-ci.yml 0 → 100644 +7 −0 Original line number Diff line number Diff line test: image: name: cypress/included entrypoint: [""] stage: test script: - cypress run cypress.config.js 0 → 100644 +7 −0 Original line number Diff line number Diff line const { defineConfig } = require('cypress') module.exports = defineConfig({ e2e: { baseUrl: 'http://localhost:8000' } }) cypress/e2e/home_page.cy.js 0 → 100644 +7 −0 Original line number Diff line number Diff line describe("Start page", () => { it("loads and contains a heading", () => { cy.visit("/") cy.contains("Was möchtest du tun?") }) }) Loading
.gitlab-ci.yml 0 → 100644 +7 −0 Original line number Diff line number Diff line test: image: name: cypress/included entrypoint: [""] stage: test script: - cypress run
cypress.config.js 0 → 100644 +7 −0 Original line number Diff line number Diff line const { defineConfig } = require('cypress') module.exports = defineConfig({ e2e: { baseUrl: 'http://localhost:8000' } })
cypress/e2e/home_page.cy.js 0 → 100644 +7 −0 Original line number Diff line number Diff line describe("Start page", () => { it("loads and contains a heading", () => { cy.visit("/") cy.contains("Was möchtest du tun?") }) })