We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b244b7 commit 3a7bf1cCopy full SHA for 3a7bf1c
cypress.config.js
@@ -4,5 +4,13 @@ module.exports = defineConfig({
4
e2e: {
5
baseUrl: process.env.CYPRESS_BASE_URL || 'http://localhost:3000',
6
chromeWebSecurity: false, // Required for OIDC testing
7
+ setupNodeEvents(on, config) {
8
+ on("task", {
9
+ log(message) {
10
+ console.log(message);
11
+ return null;
12
+ }
13
+ })
14
15
},
16
});
0 commit comments