You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 line
600 B

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