@mariosant/t

0.0.5 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i @mariosant/t

Weekly Downloads

0

Version

0.0.5

License

ISC

Unpacked Size

7.65 kB

Total Files

14

Last publish

Collaborators

  • mariosant