frontAnswerer/cypress.config.ts

11 lines
211 B
TypeScript
Raw Normal View History

2024-05-31 16:41:18 +00:00
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
2025-10-02 00:07:05 +00:00
baseUrl: "http://localhost:5173",
2024-05-31 16:41:18 +00:00
viewportWidth: 1440,
viewportHeight: 900,
supportFile: false,
},
});