mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-08-20 09:14:22 +00:00
9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
|
const { defineConfig } = require("cypress");
|
||
|
|
||
|
module.exports = defineConfig({
|
||
|
e2e: {
|
||
|
supportFile: false,
|
||
|
baseUrl: "http://localhost:8080"
|
||
|
},
|
||
|
});
|