mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
6 lines
254 B
Bash
Executable File
6 lines
254 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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 $*
|