Files
lucia-frontend/cypress.config.js
2023-05-04 14:56:45 +08:00

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
// }