integration test runner

This commit is contained in:
Florian Dold 2020-08-06 00:52:00 +05:30
parent 70fa42da04
commit a77ba4065b
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 5 additions and 1 deletions

View File

@ -39,6 +39,10 @@ check: compile
webextensions: rollup
./webextension/pack.sh
.PHONY: integrationtests
integrationtests: compile
./packages/taler-integrationtests/testrunner '*'
.PHONY: i18n
i18n: compile
# extract translatable strings

View File

@ -30,7 +30,7 @@ num_succ=0
# Glob tests
for file in lib/$1?(.js); do
case "$file" in
*.js)
*/test-*.js)
echo "executing test $file"
ret=0
node -r source-map-support/register -r esm $file || ret=$?