UNPKG

@rawcmd/core

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