summaryrefslogtreecommitdiff
path: root/deps/node/deps/node-inspect/test/cli/help.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/node-inspect/test/cli/help.test.js')
-rw-r--r--deps/node/deps/node-inspect/test/cli/help.test.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/node/deps/node-inspect/test/cli/help.test.js b/deps/node/deps/node-inspect/test/cli/help.test.js
deleted file mode 100644
index 9f0c081b..00000000
--- a/deps/node/deps/node-inspect/test/cli/help.test.js
+++ /dev/null
@@ -1,22 +0,0 @@
-'use strict';
-const { test } = require('tap');
-
-const startCLI = require('./start-cli');
-
-test('examples/empty.js', (t) => {
- const cli = startCLI(['examples/empty.js']);
-
- function onFatal(error) {
- cli.quit();
- throw error;
- }
-
- return cli.waitForInitialBreak()
- .then(() => cli.waitForPrompt())
- .then(() => cli.command('help'))
- .then(() => {
- t.match(cli.output, /run, restart, r\s+/m);
- })
- .then(() => cli.quit())
- .then(null, onFatal);
-});