We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 036a669 commit 6429dc4Copy full SHA for 6429dc4
1 file changed
handwritten/logging-winston/samples/system-test/quickstart.test.js
@@ -17,7 +17,9 @@
17
18
const path = require('path');
19
const {assert} = require('chai');
20
-const {execSync} = require('child_process');
+const cp = require('child_process');
21
+
22
+const execSync = cmd => cp.execSync(cmd, {encoding: 'utf-8'});
23
24
describe('QuickStart', () => {
25
it('should write using winston', async () => {
0 commit comments