refactor(cypress): update cypress, move testing to root level

This commit is contained in:
Christopher Möller
2022-07-26 18:20:52 +02:00
parent 09abf2823d
commit 141a9763f8
16 changed files with 871 additions and 39 deletions
+11
View File
@@ -0,0 +1,11 @@
const { defineConfig } = require('cypress');
module.exports = defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
viewportWidth: 1280,
viewportHeight: 720,
video: false,
supportFile: false,
},
});