Skip to content

Commit

Permalink
Pin mocha to 5.2.0
Browse files Browse the repository at this point in the history
Recently released mocha 6.0.0 is not compatible with Node in our CI
environment. Pin the version to ^5.2.0 while it is still available.
  • Loading branch information
ilammy committed Feb 19, 2019
1 parent d24b49a commit 6caa83c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ endif

#default engine
ifeq ($(PREFIX),)
PREFIX = /usr
PREFIX = /usr/local

# MacOS
ifdef IS_MACOS
Expand Down
Binary file modified tests/soter/nist-sts/assess
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/test.mk
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ endif
ifdef NPM_VERSION
@echo -n "make tests for jsthemis "
@echo "#!/bin/bash -e" > ./$(BIN_PATH)/tests/jsthemis_test.sh
@echo "npm install mocha" >> ./$(BIN_PATH)/tests/jsthemis_test.sh
@echo "npm install mocha@^5.2.0" >> ./$(BIN_PATH)/tests/jsthemis_test.sh
@echo "$(shell npm root)/mocha/bin/mocha ./tests/jsthemis" >> ./$(BIN_PATH)/tests/jsthemis_test.sh
@chmod a+x ./$(BIN_PATH)/tests/jsthemis_test.sh
@$(PRINT_OK_)
Expand Down

0 comments on commit 6caa83c

Please sign in to comment.