Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 781 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 781 Bytes

Tasty-ts is a tasty testing library for typescript and javascript. It is extremely simple, fast and it "just works".

Install

with yarn

yarn add -D tasty-ts

with npm

npm install --save-dev tasty-ts

A simple example

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())()

Motivation

TODO

Docs

TODO

Acknowledgements, citations, and related work

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.