2022-06-16 21:31:13 +00:00
|
|
|
const { defineConfig } = require("cypress");
|
|
|
|
|
|
|
|
module.exports = defineConfig({
|
2022-06-17 15:05:14 +00:00
|
|
|
projectId: "crax1q",
|
2022-06-16 21:31:13 +00:00
|
|
|
e2e: {
|
|
|
|
baseUrl: "http://localhost:7001",
|
2022-06-24 19:18:25 +00:00
|
|
|
setupNodeEvents(_on, _config) {
|
2022-06-16 21:31:13 +00:00
|
|
|
// implement node event listeners here
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|