1.7.0 • Published 5 years ago

audition v1.7.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

audition

npm Build Status dependencies Status devDependencies Status

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
1.7.0

5 years ago

1.6.0

5 years ago

1.5.0

5 years ago

1.4.0

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

6 years ago