Created
January 22, 2016 17:40
-
-
Save morganrallen/c1b4b6db0fd2a64a6d0d to your computer and use it in GitHub Desktop.
Revisions
-
morganrallen created this gist
Jan 22, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ { "name": "test", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "tape test*.js" }, "author": "", "license": "ISC" } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ var test = require("tape"); var ts = test.createStream(); ts.pipe(process.stdout); ts.on("end", function() { console.log("Bye!"); }); test(function(t) { t.pass(); t.end(); }); This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ var test = require("tape"); test(function(t) { t.pass(); t.end(); });