From 6567843927a3e455dda2bf6fb473a944bca6bda4 Mon Sep 17 00:00:00 2001 From: Robin Munn Date: Thu, 2 Nov 2023 15:44:29 +0700 Subject: [PATCH] Make unit tests run faster in Github Actions (#7829) --- bin/ci-test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/ci-test.sh b/bin/ci-test.sh index dd90c4db6..ffcae66b2 100755 --- a/bin/ci-test.sh +++ b/bin/ci-test.sh @@ -2,9 +2,6 @@ # test TiddlyWiki5 for tiddlywiki.com -npm install playwright @playwright/test -npx playwright install chromium firefox --with-deps - node ./tiddlywiki.js \ ./editions/test \ --verbose \ @@ -13,4 +10,7 @@ node ./tiddlywiki.js \ --test \ || exit 1 +npm install playwright @playwright/test +npx playwright install chromium firefox --with-deps + npx playwright test