A simple minimal test runner, that embraces a functional testing approach.
Install it to your project with:
$ npm i @mariosant/t
You can then execute it like:
$ npx t
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')
}