mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
18 lines
327 B
JavaScript
18 lines
327 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
projectId: "qa7fe2",
|
|
chromeWebSecurity: false,
|
|
baseUrl: "http://localhost:3000",
|
|
specPattern: "**/*.feature",
|
|
supportFile: false,
|
|
retries: {
|
|
runMode: 2,
|
|
openMode: 0,
|
|
},
|
|
setupNodeEvents,
|
|
},
|
|
});
|