trevor alternatives and similar modules
Based on the "Testing" category.
Alternatively, view trevor 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
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
* 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 trevor or a related project?
Popular Comparisons
README
Your own Travis CI to run tests locally.
Purpose
I often need to run tests for multiple versions of Node.js.
But I don't want to switch versions manually using n
/nvm
or push the code to Travis CI just to run the tests.
That's why I created Trevor. It reads .travis.yml
and runs tests in all versions you requested, just like Travis CI.
Now, you can test before push and keep your git history clean.
Requirements
Installation
$ npm install --global trevor
Usage
Given the following .travis.yml
file:
language: node_js
node_js:
- '7'
- '6'
- '4'
Run trevor
in project's directory:
$ trevor
License
MIT ยฉ Vadim Demedes
*Note that all licence references and agreements mentioned in the trevor README section above
are relevant to that project's source code only.