You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
481 B

'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);
});