added cypress framework and tests for setup page

This commit is contained in:
tamasmagyar
2022-06-16 08:06:34 +02:00
parent 9a8b484ee8
commit 31c388a6e3
15 changed files with 98 additions and 9 deletions

14
cypress.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: "http://localhost:3000",
defaultCommandTimeout: 10000,
pageLoadTimeout: 60000,
viewportWidth: 1920,
viewportHeight: 1080,
},
env: {
baseUrl: "http://localhost:3000",
},
});