0.0.5 • Published 6 years ago

@mariosant/t v0.0.5

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

t

npm version Build Status

A simple minimal test runner, that embraces a functional testing approach.

Installation

Install it to your project with:

$ npm i @mariosant/t

You can then execute it like:

$ npx t

Usage

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')
}