Cloudlog/cypress.config.js

14 wiersze
369 B
JavaScript
Czysty Zwykły widok Historia

2024-04-05 20:36:16 +00:00
const { defineConfig } = require("cypress");
module.exports = defineConfig({
projectId: 'gm8wco',
e2e: {
baseUrl: "http://localhost/",
defaultCommandTimeout: 60000, // Increase default timeout to 60 seconds
requestTimeout: 60000, // Increase request timeout to 60 seconds
2024-04-05 20:36:16 +00:00
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});