Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
cucumber.js 400 B
// TODO transfer config cucumber.js into config/cucumber.yaml

let common = [
  '../../features/**/*.feature',
  '--require-module ts-node/register',
  '--require ./test/bdd/steps/**/*.ts',
  '--format progress-bar',
  '--format node_modules/cucumber-pretty',
  // '--format html:cucumber-report.html'
].join(' ');

module.exports = {
  default: common,
  // More profiles can be added if desired
};