authelia/scripts/run-cucumber.sh

6 lines
254 B
Bash
Raw Normal View History

#!/bin/bash
2018-03-28 22:04:59 +00:00
REQ=`for f in test/features/step_definitions/*.ts; do echo "--require $f"; done;`
./node_modules/.bin/cucumber-js --format-options '{"colorsEnabled": true}' --require-module ts-node/register --require test/features/support/world.ts $REQ $*