From f26f3f5ae0fcd3bddd0aec5a28e32970ee30bcec Mon Sep 17 00:00:00 2001 From: Harris Brakmic Date: Sun, 29 Dec 2024 13:05:51 +0000 Subject: [PATCH] feat: include integration tests in makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 956671f..9da4080 100644 --- a/Makefile +++ b/Makefile @@ -5,3 +5,6 @@ MOCHAFLAGS = --require ./test/bootstrap/node # Perform self-tests. check: test + +test-integration: + ./node_modules/.bin/mocha test/integration.test.js $(MOCHAFLAGS) \ No newline at end of file