Run tests using Tape.
$ yarn add --dev @start/plugin-lib-tape
# or
$ npm install --save-dev @start/plugin-lib-tape
tape(reporter?: () => NodeJS.ReadWriteStream)
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)
)