mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-10 02:05:40 +00:00
14 lines
294 B
JavaScript
14 lines
294 B
JavaScript
/* eslint-disable */
|
|
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
projectId: 'crax1q',
|
|
chromeWebSecurity: false,
|
|
e2e: {
|
|
baseUrl: 'http://localhost:7001',
|
|
setupNodeEvents(_on, _config) {
|
|
// implement node event listeners here
|
|
},
|
|
},
|
|
});
|