source: trip-planner-front/node_modules/karma/cucumber.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 405 bytes
Line 
1// Shared configuration for Cucumber.js tests.
2// See https://github.com/cucumber/cucumber-js/blob/master/docs/cli.md#profiles
3const options = [
4 '--format progress',
5 '--require test/e2e/support/env.js',
6 '--require test/e2e/support/world.js',
7 '--require test/e2e/step_definitions/core_steps.js',
8 '--require test/e2e/step_definitions/hooks.js'
9]
10
11module.exports = {
12 default: options.join(' ')
13}
Note: See TracBrowser for help on using the repository browser.