Squiz/cypress.config.ts

11 lines
221 B
TypeScript
Raw Normal View History

2023-12-12 08:55:39 +00:00
import { defineConfig } from "cypress";
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:3000',
viewportWidth: 1440,
viewportHeight: 900,
supportFile: false,
},
});