source: trip-planner-front/node_modules/select-hose/test/fixtures.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 293 bytes
Line 
1var assert = require('assert');
2
3function expectData(stream, expected, callback) {
4 var actual = '';
5
6 stream.on('data', function(chunk) {
7 actual += chunk;
8 });
9 stream.on('end', function() {
10 assert.equal(actual, expected);
11 callback();
12 });
13}
14exports.expectData = expectData;
Note: See TracBrowser for help on using the repository browser.