forked from verdnatura/hedera-web
14 lines
418 B
JavaScript
14 lines
418 B
JavaScript
const { defineConfig } = require('cypress');
|
|
|
|
module.exports = defineConfig({
|
|
e2e: {
|
|
baseUrl: 'http://localhost:8080/',
|
|
supportFile: 'src/test/cypress/support/index.js',
|
|
fixturesFolder: 'src/test/cypress/fixtures',
|
|
specPattern: 'src/test/cypress/integration/**/*.spec.js',
|
|
setupNodeEvents(on, config) {
|
|
// implement node event listeners here
|
|
}
|
|
}
|
|
});
|