25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cypress.config.js 709 B

123456789101112131415161718192021222324252627
  1. const { defineConfig } = require("cypress");
  2. module.exports = defineConfig({
  3. projectId: "92odwv",
  4. adminPassword: "admin",
  5. testUser: "xhiveframework@example.com",
  6. defaultCommandTimeout: 20000,
  7. pageLoadTimeout: 15000,
  8. video: true,
  9. videoUploadOnPasses: false,
  10. viewportHeight: 960,
  11. viewportWidth: 1400,
  12. retries: {
  13. runMode: 2,
  14. openMode: 2,
  15. },
  16. e2e: {
  17. // We've imported your old cypress plugins here.
  18. // You may want to clean this up later by importing these.
  19. setupNodeEvents(on, config) {
  20. return require("./cypress/plugins/index.js")(on, config);
  21. },
  22. testIsolation: false,
  23. baseUrl: "http://test_site_ui:8000",
  24. specPattern: ["./cypress/integration/*.js", "**/ui_test_*.js"],
  25. },
  26. });