We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 443a729 + 43540b8 commit a8a759eCopy full SHA for a8a759e
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@hapiness/mongo",
3
- "version": "1.1.4",
+ "version": "1.1.5",
4
"description": "Hapiness Module for MongoDB usage",
5
"main": "commonjs/index.js",
6
"types": "index.d.ts",
src/module/utils/test-utils.ts
@@ -24,8 +24,8 @@ export class MongoTestUtils {
24
setTimeout(() => done(), 1500);
25
26
if (!silent) {
27
- this.spawn.stdout.on('data', console.log);
28
- 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()));
29
}
30
31
0 commit comments