Tasty-ts is a tasty testing library for typescript and javascript. It is extremely simple, fast and it "just works".
with yarn
yarn add -D tasty-ts
with npm
npm install --save-dev tasty-ts
import suite from 'tasty-ts'
import assert from 'assert'
const test = suite('my tasty test suite')
test('trivial-assert', () => {
assert.equal(1 + 1, 2)
})
!(() => test.run())()
TODO
TODO
The following is a non-exhaustive list of people and works that have had a significant impact, directly or indirectly, on tasty-ts’s design and implementation:
- Tero Piirainen and all baretest contributors.