@start/plugin-lib-tape
v3.0.0
Published
✅ Run tests using Tape
Downloads
114
Readme
✅ plugin-lib-tape
Run tests using Tape.
Install
$ yarn add --dev @start/plugin-lib-tape
Usage
Signature
tape(reporter?: () => NodeJS.ReadWriteStream)
reporter
Example
import sequence from '@start/plugin-sequence'
import find from '@start/plugin-find'
import tape from '@start/plugin-lib-tape'
import tapDiff from 'tap-diff'
export const task = () =>
sequence(
find('test/**/*.js'),
tape(tapDiff)
)