Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/japiirainen/tasty-ts
A tasty testing library
https://github.com/japiirainen/tasty-ts
jest mocha tap test test-runners testing testing-library testing-tools
Last synced: 12 days ago
JSON representation
A tasty testing library
- Host: GitHub
- URL: https://github.com/japiirainen/tasty-ts
- Owner: japiirainen
- License: mit
- Created: 2022-02-01T18:07:57.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-02T06:53:13.000Z (about 3 years ago)
- Last Synced: 2024-12-08T21:12:55.645Z (2 months ago)
- Topics: jest, mocha, tap, test, test-runners, testing, testing-library, testing-tools
- Language: TypeScript
- Homepage:
- Size: 30.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
*Tasty-ts* is a tasty testing library for typescript and javascript. It is extremely simple, fast and it "just works".
### Install
with yarn
```sh
yarn add -D tasty-ts
```with npm
```sh
npm install --save-dev tasty-ts
```### A simple example
```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())()
```### 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](https://github.com/volument/baretest) contributors.