3.0.0 • Published 4 years ago

@start/plugin-lib-tape v3.0.0

Weekly downloads
99
License
MIT
Repository
github
Last release
4 years ago

✅ plugin-lib-tape

Run tests using Tape.

Install

$ yarn add --dev @start/plugin-lib-tape

Usage

Signature

tape(reporter?: () => NodeJS.ReadWriteStream)

reporter

TAP compatible 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)
  )