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

Commit 41148d7

Browse files
author
Jan Krems
committed
test: Remove outdated test
1 parent 759f187 commit 41148d7

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"scripts": {
1717
"pretest": "eslint --rulesdir=tools/eslint-rules lib test",
18-
"test": "tap \"test/**/*.test.js\"",
18+
"test": "tap test",
1919
"posttest": "nlm verify"
2020
},
2121
"nlm": {

test/cli/start-cli.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
'use strict';
22
const spawn = require('child_process').spawn;
33

4+
// This allows us to keep the helper inside of `test/` without tap warning
5+
// about "pending" test files.
6+
const tap = require('tap');
7+
tap.test('startCLI', (t) => t.end());
8+
49
const CLI =
510
process.env.USE_EMBEDDED_NODE_INSPECT === '1' ?
611
'inspect' :

test/node-inspect.test.js

-9
This file was deleted.

0 commit comments

Comments
 (0)