From 9053e0dedf0a8d9b218fe3bc53d6feecd33b1912 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Sat, 27 Dec 2014 17:00:46 +1100 Subject: [PATCH] ignore bin tests under instanbul --- test/bin.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/bin.js b/test/bin.js index 6107ad5506..8930fdf05f 100644 --- a/test/bin.js +++ b/test/bin.js @@ -1,3 +1,6 @@ +// skip these tests under instanbul since they're useless +if (process.env.running_under_istanbul === '1') return; + var readdir = require("fs-readdir-recursive"); var helper = require("./_helper"); var assert = require("assert");