24 lines
495 B
JavaScript
24 lines
495 B
JavaScript
/* eslint-env node */
|
|
const { defineConfig } = require("cypress");
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
specPattern: "cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}",
|
|
},
|
|
});
|
|
|
|
// {
|
|
// "video": false,
|
|
// "env": {
|
|
// "DISPLAY": ":99"
|
|
// },
|
|
// "chromeWebSecurity": false,
|
|
// "viewportHeight": 1080,
|
|
// "viewportWidth": 1920,
|
|
// "numTestsKeptInMemory": 10,
|
|
// "browser": "chrome",
|
|
// "headless": true,
|
|
// "includeShadowDom": true,
|
|
// "watchForFileChanges": true
|
|
// }
|