From f72376d3230be7c968e392d59680bd01f8c20360 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Sun, 7 May 2017 14:10:32 +0200 Subject: [PATCH] test: add skipIfInspectorDisabled to debugger-pid Currently this test will fail if node was configured --without-ssl. PR-URL: https://github.com/nodejs/node/pull/12882 Reviewed-By: Rich Trott Reviewed-By: Refael Ackermann Reviewed-By: Colin Ihrig Reviewed-By: Sakthipriyan Vairamani --- test/parallel/test-debugger-pid.js | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parallel/test-debugger-pid.js b/test/parallel/test-debugger-pid.js index 536abf25322..e11d23152f7 100644 --- a/test/parallel/test-debugger-pid.js +++ b/test/parallel/test-debugger-pid.js @@ -1,5 +1,6 @@ 'use strict'; const common = require('../common'); +common.skipIfInspectorDisabled(); const assert = require('assert'); const spawn = require('child_process').spawn;