Skip to content

Commit

Permalink
using tape for tests and testlingified
Browse files Browse the repository at this point in the history
  • Loading branch information
thlorenz committed Dec 12, 2013
1 parent f005e4e commit fda3505
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# apply-transform [![build status](https://secure.travis-ci.org/thlorenz/apply-transform.png)](http://travis-ci.org/thlorenz/apply-transform)

[![testling badge](https://ci.testling.com/thlorenz/apply-transform.png)](https://ci.testling.com/thlorenz/apply-transform)

Applies a transform to an input string and calls back with result, mostly useful for testing transforms

```js
Expand Down
19 changes: 18 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
"devDependencies": {
"nave": "~0.4.3",
"tap": "~0.4.3",
"through2": "~0.2.3"
"through2": "~0.2.3",
"tape": "~2.3.0"
},
"keywords": [
"transform",
Expand All @@ -41,5 +42,21 @@
},
"engine": {
"node": ">=0.6"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
}
}
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

var test = require('tap').test
var test = require('tape')
, through = require('through2')
, applyTransform = require('../')

Expand Down

0 comments on commit fda3505

Please sign in to comment.