0.1.0 • Published 9 years ago

take v0.1.0

Weekly downloads
12
License
MIT
Repository
github
Last release
9 years ago

take

Run tests on various versions of node.js/io.js using give.

Installation

npm -g install take

You can also install it as a devDependency, if you want to use it to run tests on a package.

npm install --save-dev take

Usage

take "node v0.12.0" "iojs v1.3.0" "npm test"

package.json

{
  "name": "take-example",
  "version": "0.0.0",
  "devDependencies": {
    "take": "^1.0.0"
  },
  "scripts": {
    "test": "node test/simple-test.js",
    "take": "take \"node v0.12.0\" \"iojs v1.3.0\" \"npm test\""
  },