2
0

cypress.config.ts 216 B

12345678910
  1. import { defineConfig } from "cypress";
  2. export default defineConfig({
  3. e2e: {
  4. baseUrl: "http://localhost:9000",
  5. // setupNodeEvents(on, config) {},
  6. viewportWidth: 1280,
  7. viewportHeight: 660,
  8. },
  9. });