mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
* fix: Fix inferred type of X cannot be named error after pnpm update * feat: Change page objects to expose actions and getters. Add credential creation suite
13 lines
258 B
JavaScript
13 lines
258 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:5678',
|
|
video: false,
|
|
screenshotOnRunFailure: true,
|
|
experimentalSessionAndOrigin: true,
|
|
experimentalInteractiveRunEvents: true,
|
|
}
|
|
});
|