2022-06-27 21:45:41 +00:00
|
|
|
/* eslint-disable */
|
|
|
|
const { defineConfig } = require('cypress');
|
2022-06-16 21:31:13 +00:00
|
|
|
|
|
|
|
module.exports = defineConfig({
|
2022-06-27 21:45:41 +00:00
|
|
|
projectId: 'crax1q',
|
2022-07-06 21:14:16 +00:00
|
|
|
chromeWebSecurity: false,
|
2022-06-16 21:31:13 +00:00
|
|
|
e2e: {
|
2022-06-27 21:45:41 +00:00
|
|
|
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
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|