2024-04-06 04:36:16 +08:00
|
|
|
const { defineConfig } = require("cypress");
|
|
|
|
|
|
|
|
|
|
module.exports = defineConfig({
|
|
|
|
|
projectId: 'gm8wco',
|
|
|
|
|
e2e: {
|
|
|
|
|
baseUrl: "http://localhost/",
|
2025-07-18 00:03:41 +08:00
|
|
|
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
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|