UNPKG

generator-njsm

Version:
14 lines (11 loc) 295 B
import test from 'ava'; import <%= camelModuleName %> from '.'; test('title', t => { t.throws(() => { <%= camelModuleName %>(123); }, { instanceOf: TypeError, message: 'Expected a string, got number' }); t.is(<%= camelModuleName %>('unicorns'), 'unicorns & rainbows'); });