Skip to content

Commit

Permalink
Merge pull request #38 from hapinessjs/next
Browse files Browse the repository at this point in the history
Next into master
  • Loading branch information
juneil authored Jan 29, 2018
2 parents 443a729 + 43540b8 commit a8a759e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hapiness/mongo",
"version": "1.1.4",
"version": "1.1.5",
"description": "Hapiness Module for MongoDB usage",
"main": "commonjs/index.js",
"types": "index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/module/utils/test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ export class MongoTestUtils {
setTimeout(() => done(), 1500);

if (!silent) {
this.spawn.stdout.on('data', console.log);
this.spawn.stderr.on('data', console.log);
this.spawn.stdout.on('data', d => console.log(d.toString()));
this.spawn.stderr.on('data', d => console.log(d.toString()));
}
}

Expand Down

0 comments on commit a8a759e

Please sign in to comment.