taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit a77ba4065b05f6052789130b828b586145aae144
parent 70fa42da049020a036f07441f736c201f030e15d
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu,  6 Aug 2020 00:52:00 +0530

integration test runner

Diffstat:
Mbuild-system/Makefile | 4++++
Mpackages/taler-integrationtests/testrunner | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/build-system/Makefile b/build-system/Makefile @@ -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 diff --git a/packages/taler-integrationtests/testrunner b/packages/taler-integrationtests/testrunner @@ -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=$?