From c676f9b69e8f0d58d35d57cc9f690542dd7a2a7a Mon Sep 17 00:00:00 2001 From: Matthew White Date: Tue, 1 Aug 2023 23:49:40 -0400 Subject: [PATCH] Mock bcrypt during `make test-integration` (#935) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9ba037285..a935a8f7f 100644 --- a/Makefile +++ b/Makefile @@ -33,14 +33,14 @@ debug: base .PHONY: test test: lint - env BCRYPT=no npx mocha --recursive --exit + BCRYPT=no npx mocha --recursive --exit .PHONY: test-full test-full: lint npx mocha --recursive --exit .PHONY: test-integration test-integration: node_version - npx mocha --recursive test/integration --exit + BCRYPT=no npx mocha --recursive test/integration --exit .PHONY: test-unit test-unit: node_version