summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-08-06 00:52:00 +0530
committerFlorian Dold <florian.dold@gmail.com>2020-08-06 00:52:00 +0530
commita77ba4065b05f6052789130b828b586145aae144 (patch)
tree31dd7115e28dfd148c26f4cb7a1dc2e90f857fc8
parent70fa42da049020a036f07441f736c201f030e15d (diff)
downloadwallet-core-a77ba4065b05f6052789130b828b586145aae144.tar.gz
wallet-core-a77ba4065b05f6052789130b828b586145aae144.tar.bz2
wallet-core-a77ba4065b05f6052789130b828b586145aae144.zip
integration test runner
-rw-r--r--build-system/Makefile4
-rwxr-xr-xpackages/taler-integrationtests/testrunner2
2 files changed, 5 insertions, 1 deletions
diff --git a/build-system/Makefile b/build-system/Makefile
index 1ece8afdf..4a2d51e3d 100644
--- 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
index 282624500..6476d73fa 100755
--- 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=$?