uptime-kuma/config/cypress.frontend.config.js
2023-01-10 08:18:48 +01:00

11 lines
201 B
JavaScript

const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
supportFile: false,
specPattern: [
"test/cypress/unit/**/*.js"
],
}
});