Files
ueblueprint/cypress.config.js
barsdeveloper 8a96af670e Dropdown implementation, switch refactoring
* Various fixes

* Fix tests

* Dropdown names deduced from pin names

* Remove update callbacks

* Fix double pins issue

* return undefined if not switch
2023-04-22 12:44:37 +02:00

13 lines
259 B
JavaScript

const { defineConfig } = require("cypress")
module.exports = defineConfig({
e2e: {
setupNodeEvents(on, config) {
// implement node event listeners here
},
experimentalRunAllSpecs: true,
testIsolation: false,
video: false,
},
})