mirror of https://github.com/buster-so/buster.git
14 lines
274 B
TypeScript
14 lines
274 B
TypeScript
|
import { defineConfig } from 'cypress';
|
||
|
|
||
|
export default defineConfig({
|
||
|
e2e: {
|
||
|
setupNodeEvents(on, config) {
|
||
|
// implement node event listeners here
|
||
|
},
|
||
|
experimentalStudio: true,
|
||
|
video: true,
|
||
|
videoCompression: true,
|
||
|
testIsolation: false
|
||
|
}
|
||
|
});
|