Skip to content
Snippets Groups Projects
cypress.config.js 498 B
Newer Older
Arie Peterson's avatar
Arie Peterson committed
const { defineConfig } = require("cypress");

module.exports = defineConfig({
  e2e: {
    setupNodeEvents(on, config) {
      // https://github.com/archfz/cypress-terminal-report
      const options = {
        printLogsToConsole: "always",
      }
      require('cypress-terminal-report/src/installLogsPrinter')(on, options);
    },
  },
  // We have some slow calls to load the list of apps, users etc.
  defaultCommandTimeout: 10000,
Arie Peterson's avatar
Arie Peterson committed
  videoCompression: false,
  videoUploadOnPasses: false
});