mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:41:34 +08:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
const { defineConfig } = require("cypress")
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
experimentalRunAllSpecs: true,
|
|
testIsolation: false,
|
|
},
|
|
})
|