mirror of
https://github.com/maputnik/editor.git
synced 2026-07-23 14:27:26 +00:00
14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
import { defineConfig } from "cypress";
|
|
|
|
export default defineConfig({
|
|
e2e: {
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
},
|
|
retries: {
|
|
runMode: 2,
|
|
openMode: 0,
|
|
},
|
|
},
|
|
});
|