lix-website/themes/lix/assets/bootstrap/node_modules/karma/cucumber.js

14 lines
405 B
JavaScript
Raw Normal View History

2024-04-27 03:39:10 +00:00
// Shared configuration for Cucumber.js tests.
// See https://github.com/cucumber/cucumber-js/blob/master/docs/cli.md#profiles
const options = [
'--format progress',
'--require test/e2e/support/env.js',
'--require test/e2e/support/world.js',
'--require test/e2e/step_definitions/core_steps.js',
'--require test/e2e/step_definitions/hooks.js'
]
module.exports = {
default: options.join(' ')
}