0.0.5 • Published 8 years ago
@mariosant/t v0.0.5
t
A simple minimal test runner, that embraces a functional testing approach.
Installation
Install it to your project with:
$ npm i @mariosant/tYou can then execute it like:
$ npx tUsage
t focuses on minimality. Tests are files that export a function. Here is a sample one
// let's call this file index.test.js
const {equal} = require('bring-your-assertion-library')
const someModule = require('./some-module')
module.exports = () => equal(someModule.color, 'red')If you need async:
const {equal} = require('bring-your-assertion-library')
const someModule = require('./some-module')
module.exports = async () => {
	const color = await someModule.fetchAsyncColor()
	equal(color, 'red')
}