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.
-
Playwright
Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API. -
Mocha
โ๏ธ simple, flexible, fun javascript test framework for node.js & the browser -
Nightwatch
Integrated end-to-end testing framework written in Node.js and using W3C Webdriver API. Developed at @browserstack -
WebdriverIO
Next-gen browser and mobile automation test framework for Node.js -
volkswagen
:see_no_evil: Volkswagen detects when your tests are being run in a CI server, and makes them pass. -
CasperJS
Navigation scripting and testing utility for PhantomJS and SlimerJS -
istanbul
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. -
fast-check
Property based testing framework for JavaScript (like QuickCheck) written in TypeScript -
toxy
Hackable HTTP proxy for resiliency testing and simulated network conditions -
uvu
uvu is an extremely fast and lightweight test runner for Node.js and the browser -
power-assert
Power Assert in JavaScript. Provides descriptive assertion messages through standard assert interface. No API is the best API. -
loadtest
Runs a load test on the selected URL. Easy to extend minimally for your own ends. -
testdouble.js (AKA td.js)
A minimal test double library for TDD with JavaScript -
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. -
abstruse
Abstruse is a free and open-source CI/CD platform that tests your models and code. -
Crusher
๐งโโ๏ธ Fast low-code testing framework โฑ๏ธ Create test in <60 secs -
testen
:heavy_check_mark: Run tests for multiple versions of Node.js in local env.
A Non-Cloud Alternative to Google Forms that has it all.
SurveyJS JavaScript libraries allow you to easily set up a robust form management system fully integrated into your IT infrastructure where users can create and edit multiple dynamic JSON-based forms in a no-code form builder. Learn more now.
Promo
surveyjs.io
* 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'