Popularity
5.9
Stable
Activity
0.0
Stable
2,115
26
81

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: Testing    
Latest version: v2.4.1

trevor alternatives and similar modules

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

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

Add another 'Testing' Module

README

Build Status

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.