Postleitzahlen Suche und e2e Tests

This commit is contained in:
Moritz Utcke
2024-01-13 19:27:31 +07:00
parent cee4953715
commit 3e9b312354
23 changed files with 417 additions and 91 deletions

View File

@@ -1,8 +1,17 @@
import { defineConfig } from 'cypress'
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
supportFile: false
baseUrl: "http://localhost:3000",
supportFile: false,
viewportHeight: 900,
viewportWidth: 1660,
},
})
component: {
devServer: {
framework: "svelte",
bundler: "vite",
},
},
});