UNPKG

firescript

Version:
12 lines (9 loc) 252 B
const { Command } = require('supercmd') const command = new Command() module.exports.command = command command .cmd('test [file]') .description('Run Firescript tests') .action((ctx, file) => { console.log('No test implemented yet ;)') })