Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
test: Remove outdated test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Krems committed Apr 3, 2017
1 parent 759f187 commit 41148d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"scripts": {
"pretest": "eslint --rulesdir=tools/eslint-rules lib test",
"test": "tap \"test/**/*.test.js\"",
"test": "tap test",
"posttest": "nlm verify"
},
"nlm": {
Expand Down
5 changes: 5 additions & 0 deletions test/cli/start-cli.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
'use strict';
const spawn = require('child_process').spawn;

// This allows us to keep the helper inside of `test/` without tap warning
// about "pending" test files.
const tap = require('tap');
tap.test('startCLI', (t) => t.end());

const CLI =
process.env.USE_EMBEDDED_NODE_INSPECT === '1' ?
'inspect' :
Expand Down
9 changes: 0 additions & 9 deletions test/node-inspect.test.js

This file was deleted.

0 comments on commit 41148d7

Please sign in to comment.