Popularity
0.5
Stable
Activity
0.0
Stable
7
1
3
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.
-
Playwright
Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API. -
Nightwatch
Integrated end-to-end testing framework written in Node.js and using W3C Webdriver API. Developed at @browserstack -
volkswagen
:see_no_evil: Volkswagen detects when your tests are being run in a CI server, and makes them pass. -
istanbul
DISCONTINUED. Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests and browser tests. Built for scale. -
loadtest
Runs a load test on the selected URL. Fast and easy to use. Can be integrated in your own workflow using the API. -
power-assert
Power Assert in JavaScript. Provides descriptive assertion messages through standard assert interface. No API is the best API. -
testcontainers-node
Testcontainers is a NodeJS library that supports tests, providing lightweight, throwaway instances of common databases, Selenium web browsers, or anything else that can run in a Docker container.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of AVA or a related project?
Popular Comparisons
README
start-ava
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 defaulttapReporter
โ optional tap reporter foravaReporter='tap'