aboutsummaryrefslogtreecommitdiff
path: root/test/sequential/test-debugger-debug-brk.js
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-03-01 08:16:48 +0100
committerDaniel Bevenius <daniel.bevenius@gmail.com>2017-03-04 20:16:52 +0100
commit1402fef098309bf7fd902d0be86cd8a1a3e07b86 (patch)
tree189a1119a63898f9ea38d3fd6992f22d66f00b6e /test/sequential/test-debugger-debug-brk.js
parent93525287791c8b16012a146623982d31e1f18775 (diff)
downloadandroid-node-v8-1402fef098309bf7fd902d0be86cd8a1a3e07b86.tar.gz
android-node-v8-1402fef098309bf7fd902d0be86cd8a1a3e07b86.tar.bz2
android-node-v8-1402fef098309bf7fd902d0be86cd8a1a3e07b86.zip
test: make tests pass when configured without-ssl
Currently when node is build --without-ssl and the test are run, there are a number of failing test due to tests expecting crypto support to be available. This commit fixes fixes the failure and instead skips the tests that expect crypto to be available. PR-URL: https://github.com/nodejs/node/pull/11631 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'test/sequential/test-debugger-debug-brk.js')
-rw-r--r--test/sequential/test-debugger-debug-brk.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sequential/test-debugger-debug-brk.js b/test/sequential/test-debugger-debug-brk.js
index f04af4544f..f5a69b91d6 100644
--- a/test/sequential/test-debugger-debug-brk.js
+++ b/test/sequential/test-debugger-debug-brk.js
@@ -1,5 +1,6 @@
'use strict';
const common = require('../common');
+common.skipIfInspectorDisabled();
const assert = require('assert');
const spawn = require('child_process').spawn;