From 126088e5ed66bddc9ce104afb60d405c754f8b5e Mon Sep 17 00:00:00 2001 From: Patrick Kettner Date: Sun, 17 Jan 2016 21:11:40 -0800 Subject: [PATCH] dont cause the cli test to create a file that I keep accidentally adding --- .gitignore | 1 + test/node/lib/cli.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 12a92ba6e7..963dc29362 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ test/coverage test/*.html gh-pages modernizr.min.js +modernizr-test.js metadata.json build dist diff --git a/test/node/lib/cli.js b/test/node/lib/cli.js index cea4636737..1fe68698a9 100644 --- a/test/node/lib/cli.js +++ b/test/node/lib/cli.js @@ -15,7 +15,7 @@ describe('cli', function() { }); it('does not throw when being executed', function(done) { - cp.exec('node ' + root + '/bin/modernizr -f adownload', done); + cp.exec('node ' + root + '/bin/modernizr -f adownload -d modernizr-test.js', done); }); });