test guest auth pages

This commit is contained in:
Yisroel Baum 2026-07-31 09:46:39 +03:00
parent 28c1edd958
commit 4e3d8f74b8
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 80 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import { defineConfig } from 'cypress'
const frontendPort = process.env.VITE_PORT ?? '5173'
export default defineConfig({
e2e: {
baseUrl: `http://127.0.0.1:${frontendPort}`,
supportFile: false,
},
video: false,
})