Popularity
0.5
Stable
Activity
0.0
Stable
7
1
3

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Promises     Generators     Testing     Observable     Await     Async     Promise     Tap     TDD     Test     Mocha     Generator     CLI     Parallel     Function     Assert     Jasmine     Observables     Yield     Futuristic     Assertion     Cli-app     Qunit     Tape     Fast     Concurrent     Ava     Runner     Start     Start-task    
Latest version: v0.2.0

AVA alternatives and similar modules

Based on the "Testing" category.
Alternatively, view AVA alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of AVA or a related project?

Add another 'Testing' Module

README

start-ava

npm linux build windows build coverage deps

AVA task for Start.

Install

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

Usage

import Start from 'start';
import reporter from 'start-pretty-reporter';
import files from 'start-files';
import watch from 'start-watch';
import ava from 'start-ava';
import tapSpec from 'tap-spec';

const start = Start(reporter());

export const test = () => start(
  files('test/**/*.js'),
  ava('tap', tapSpec)
);

export const tdd = () => start(
  files([ 'lib/**/*.js', 'test/**/*.js' ]),
  watch(test)
);

This task relies on array of files and provides the same, see documentation for details.

:point_right: Note that this task will not work together with start-istanbul.

Arguments

ava(avaReporter, tapReporter)

  • avaReporter โ€“ name of AVA reporter, 'verbose' by default
  • tapReporter โ€“ optional tap reporter for avaReporter='tap'