start-tape

0.2.0 • Public • Published

start-tape

npm linux build windows build coverage deps

Tape task for Start.

Install

npm install --save-dev start-tape
# or 
yarn add --dev start-tape

Usage

import Start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import watch from 'start-watch';
import tape from 'start-tape';
import spec from 'tap-spec';
 
const start = Start(reporter());
 
export const test = () => start(
  files('test/**/*.js'),
  tape(spec)
);
 
export const tdd = () => start(
  files([ 'lib/**/*.js', 'test/**/*.js']),
  watch(test)
);

This task relies on array of files, see documentation for details.

Arguments

tape(reporter)

Package Sidebar

Install

npm i start-tape

Weekly Downloads

0

Version

0.2.0

License

MIT

Last publish

Collaborators

  • deepsweet