mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
16 lines
337 B
JavaScript
16 lines
337 B
JavaScript
const { defineConfig } = require("cypress")
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
experimentalRunAllSpecs: true,
|
|
scrollBehavior: false,
|
|
testIsolation: false,
|
|
video: false,
|
|
viewportHeight: 1000,
|
|
viewportWidth: 1000,
|
|
},
|
|
})
|