UNPKG

reactist

Version:

A Command Line Interface tool that automate workflow when your working with React.js project

13 lines (11 loc) 329 B
'use strict'; const commandService = require('../service/command-service.js'); const logger = require('../log/logger.js'); module.exports = function test(program) { program .command('test') .description('run all unit tests.') .action(() => { commandService.runUnitTests(); }); };