diff options
Diffstat (limited to 'deps/node-inspect/test/cli/help.test.js')
-rw-r--r-- | deps/node-inspect/test/cli/help.test.js | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/deps/node-inspect/test/cli/help.test.js b/deps/node-inspect/test/cli/help.test.js deleted file mode 100644 index 9f0c081bde..0000000000 --- a/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); -}); |