audition
v1.7.0
Published
Design, prototype, and verify code
Downloads
8
Readme
audition
Design, prototype, and verify code
Usage
Install audition by running:
yarn add audition
Write test cases in e.g. math.test.js
:
import { example } from 'audition'
import assert from 'assert'
example('doing math', () => {
assert(1 + 1 === 2)
})
example('doing math incorrectly', () => {
assert(1 + 1 === 3)
})
Execute the test cases:
yarn audition math.test.mjs
View additional documentation:
yarn audition --help