智慧水务管理系统 - 精河县供水工程综合管理平台

cypress.config.js 469B

123456789101112131415161718
  1. const { defineConfig } = require("cypress");
  2. module.exports = defineConfig({
  3. e2e: {
  4. // baseUrl: "http://localhost:3000",
  5. viewportWidth: 1280,
  6. viewportHeight: 720,
  7. video: true,
  8. screenshotOnRunFailure: true,
  9. defaultCommandTimeout: 10000,
  10. requestTimeout: 10000,
  11. responseTimeout: 10000,
  12. specPattern: "cypress/e2e/**/*.cy.{js,jsx,ts,tsx}",
  13. setupNodeEvents(on, config) {
  14. // implement node event listeners here
  15. },
  16. },
  17. });