UNPKG

gen-express-cli

Version:

A simple express cli to generate express app simply by running a command, similar to express-generator

15 lines (12 loc) 351 B
import inquirer from 'inquirer'; import { UNIT_TEST } from '../variables/templates.js'; export default async function printUnitTest() { const iq = await inquirer.prompt({ name: 'unitTest', type: 'list', message: 'Select a unit test: ', choices: Object.keys(UNIT_TEST), default: 'Jest', }); return UNIT_TEST[iq.unitTest]; }