Cloudlog/cypress.config.js

14 行
369 B
JavaScript

2024-04-06 04:36:16 +08: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-06 04:36:16 +08:00
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});