uptime-kuma/config/cypress.frontend.config.js

11 lines
201 B
JavaScript
Raw Normal View History

2023-01-10 07:18:45 +00:00
const { defineConfig } = require("cypress");
module.exports = defineConfig({
e2e: {
supportFile: false,
specPattern: [
"test/cypress/unit/**/*.js"
],
}
});