From 6aed8e944f3b1f6710a029e843d0edc72daef9e4 Mon Sep 17 00:00:00 2001 From: Raja Sekar Date: Tue, 13 Feb 2018 21:47:19 +0530 Subject: [PATCH] updated node debugger usage command in test (#7376) [skip ci] --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 017e24c572..33c6a63c56 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -8,7 +8,7 @@ fi node="node" if [ "$TEST_DEBUG" ]; then - node="node --inspect --debug-brk" + node="node --inspect-brk" fi $node node_modules/mocha/bin/_mocha `scripts/_get-test-directories.sh` --opts test/mocha.opts --grep "$TEST_GREP"