mirror of
https://github.com/Mastermindzh/react-starter-kit.git
synced 2025-01-20 18:41:41 +01:00
11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
|
import { defineConfig } from "cypress";
|
||
|
|
||
|
export default defineConfig({
|
||
|
e2e: {
|
||
|
setupNodeEvents(on, config) {
|
||
|
// implement node event listeners here
|
||
|
},
|
||
|
},
|
||
|
video: false,
|
||
|
});
|