Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 590 Bytes

readme.md

File metadata and controls

36 lines (25 loc) · 590 Bytes

✅ 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)
  )