* Set up Cypress and added a e2e test * Added `Tech stack compatibility` workflow * Fixed the issue with the workflow config file * Wait on query tool * Added `wait on query tool` step * Update .env file * Added `wait on graph set up` step * Updated workflow config file * Renamed test * Addressed comments from PR
10 lines
212 B
JavaScript
10 lines
212 B
JavaScript
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
experimentalStudio: true,
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
});
|