UNPKG

@rawcmd/core

Version:
12 lines (8 loc) 282 B
import { Spec } from '@hayspec/spec'; import { Command } from '../../../src'; const spec = new Spec(); spec.test('returns command description', async (ctx) => { const command = new Command({ description: 'foo' }); ctx.is(command.description, 'foo'); }); export default spec;