h
Test
Declarative unit testing,
for everyone
Docs
API
Run
export default { name: "Addition", run: (a, b) => a + b, tests: [ { arg: 1, expect: 1 }, { args: [1, 2, 3], expect: 6 }, { args: [], expect: undefined }, ] };