Skip to content

Commit

Permalink
Fix browserling tests since fs isn't implemented there
Browse files Browse the repository at this point in the history
  • Loading branch information
David Ellis committed Oct 5, 2013
1 parent 1879a17 commit a5a2fe2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ var perfTest = require('./test-perf');
tests.getObjs(q, {});

for(var key in tests) {
if(key !== 'getObjs' && key !== 'flattenAndNode' && key !== 'readStreams' && key !== 'complexity') tape(key, tests[key]);
if (key !== 'getObjs' &&
key !== 'flattenAndNode' &&
key !== 'readStreams' &&
key !== 'pipe' &&
key !== 'complexity') tape(key, tests[key]);
}

for(var key in perfTest) {
Expand Down

0 comments on commit a5a2fe2

Please sign in to comment.