@modfy/estester-client
v0.1.1
Published
Typescript client library for estester
Downloads
2
Keywords
Readme
Estester client package - A minimal test running typescript client
This is not an assertion library or a test runner, just a nice wrapper for running tests.
This is meant to be paired with estester
Install
npm install @modfy/estester-client
yarn install @modfy/estester-client
pnpm install @modfy/estester-client
Basic Usage
import { runTestGroup } from '@modfy/estester-client'
runTestGroup('Cutting media', {
'Should cut with correct values': () => {
//
},
'Should not go beyond end and start': () => {
throw new Error('Test')
}
})
Now this might seem quite useless on its own but it is quite powerful when paired with estester
and chai
Why
The idea is to decouple all the aspects of testing for a better and more modular experience overall.
You can learn more here https://cryogenicplanet.tech/posts/uncoupling-testing