]> zoso.dev Git - buffer.git/commitdiff
using tape so we can run these tests in browsers
authorJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 19:20:45 +0000 (12:20 -0700)
committerJames Halliday <mail@substack.net>
Wed, 20 Mar 2013 19:20:45 +0000 (12:20 -0700)
package.json
test/buffer.js
test/indexes.js

index 52bc0bcc51efcfa81ee50f6a1a9fadb6b07d5dec..8bac3896cbee2a9833e74329d90c61d11b122244 100644 (file)
@@ -11,7 +11,8 @@
         "base64-js" : "0.0.2"
     },
     "devDependencies" : {
-        "tap"        : "0.2.x"
+        "tape" : "~0.3.0",
+        "tap" : "~0.4.0"
     },
     "repository" : {
         "type" : "git",
@@ -29,7 +30,7 @@
         "email" : "toots@rastageeks.org"
     },
     "scripts" : {
-        "test" : "node node_modules/tap/bin/tap.js test/*.js"
+        "test" : "tap test/*.js"
     },
     "license" : "MIT/X11",
     "engine" : { "node" : ">=0.6" }
index 77e43494c05f0a349e93eff55ec139850d319fed..53d870834091ad6234f7b513b59f7393bbfc49b3 100644 (file)
@@ -1,5 +1,5 @@
 var buffer = require('../index.js');
-var test = require('tap').test;
+var test = require('tape');
 
 test('utf8 buffer to base64', function (t) {
     t.plan(1);
index d5a2f20e6d31aee2fcb35de92f64bd208d0ef7c5..942501378c4b86ffba31361c7dead4372d6494e7 100644 (file)
@@ -1,5 +1,5 @@
 var B = require('../').Buffer;
-var test = require('tap').test;
+var test = require('tape');
 
 test('indexes from a string', function(t) {
     t.plan(3);