@micro-app/core
Version:
[Core] Pluggable micro application framework.
25 lines (16 loc) • 423 B
JavaScript
;
/* global expect */
const Service = require('../../../core/Service');
// const help = require('.');
describe('Command help', () => {
it('command', async () => {
const service = new Service();
await service.run('help', {
_: [ 'show' ],
});
});
it('all', async () => {
const service = new Service();
await service.run('help');
});
});