From 89397acaf8144f635f97bff64bcce3906385f066 Mon Sep 17 00:00:00 2001 From: Patrik Meijer Date: Tue, 22 Aug 2023 17:28:49 -0500 Subject: [PATCH] Break-up server tests in github workflow --- .github/workflows/node.js.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 852f22122..1d636615d 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -73,5 +73,17 @@ jobs: run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/plugin - name: Mocha seeds test run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/seeds - - name: Mocha server test - run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server \ No newline at end of file + - name: Mocha server root test + run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit ./test/server + - name: Mocha server/api test + run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/api + - name: Mocha server/middleware test + run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/middleware + - name: Mocha server/storage test + run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/storage + - name: Mocha server/util test + run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/util + - name: Mocha server/webhooks test + run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/webhooks + - name: Mocha server/worker test + run: node ./node_modules/mocha/bin/mocha --timeout 10000 --exit --recursive ./test/server/worker \ No newline at end of file