Files
speckle-server/packages/server/modules/cli/commands/test.ts
T
Kristaps Fabians Geikins b02a07e2b6 feat: Frontend 2.0 MVP
2023-05-08 10:47:01 +03:00

14 lines
337 B
TypeScript

import { noop } from 'lodash'
import { CommandModule } from 'yargs'
const command: CommandModule = {
command: 'test',
describe: 'Various test actions for random testing during development',
builder(yargs) {
return yargs.commandDir('test', { extensions: ['js', 'ts'] }).demandCommand()
},
handler: noop
}
export = command