mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-21 07:46:27 +00:00
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
|
const { defineConfig } = require("cypress");
|
||
|
|
||
|
module.exports = defineConfig({
|
||
|
projectId: 'gm8wco',
|
||
|
e2e: {
|
||
|
baseUrl: "http://localhost/",
|
||
|
setupNodeEvents(on, config) {
|
||
|
// implement node event listeners here
|
||
|
},
|
||
|
},
|
||
|
});
|