Files
lucia-frontend/cypress.config.js

10 lines
212 B
JavaScript

/* eslint-env node */
const { defineConfig } = require("cypress");
module.exports = defineConfig({
defaultCommandTimeout: 6000,
e2e: {
specPattern: "cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}",
},
});