mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 23:55:04 +08:00
* Various fixes * Fix tests * Dropdown names deduced from pin names * Remove update callbacks * Fix double pins issue * return undefined if not switch
13 lines
259 B
JavaScript
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,
|
|
},
|
|
})
|