Files
lucia-frontend/cypress.config.js
2023-01-31 13:38:00 +08:00

10 lines
219 B
JavaScript

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