Skip to content

Commit a8a759e

Browse files
authored
Merge pull request #38 from hapinessjs/next
Next into master
2 parents 443a729 + 43540b8 commit a8a759e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hapiness/mongo",
3-
"version": "1.1.4",
3+
"version": "1.1.5",
44
"description": "Hapiness Module for MongoDB usage",
55
"main": "commonjs/index.js",
66
"types": "index.d.ts",

src/module/utils/test-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ export class MongoTestUtils {
2424
setTimeout(() => done(), 1500);
2525

2626
if (!silent) {
27-
this.spawn.stdout.on('data', console.log);
28-
this.spawn.stderr.on('data', console.log);
27+
this.spawn.stdout.on('data', d => console.log(d.toString()));
28+
this.spawn.stderr.on('data', d => console.log(d.toString()));
2929
}
3030
}
3131

0 commit comments

Comments
 (0)