Skip to content

Commit 5154663

Browse files
committed
moar
1 parent 27d16e1 commit 5154663

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/jest-runtime/src/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ const supportsNodeColonModulePrefixInRequire = (() => {
161161
})();
162162

163163
const supportsNodeColonModulePrefixInImport = (() => {
164-
const {stdout} = execa.sync(
164+
const {stdout, stderr} = execa.sync(
165165
'node',
166166
[
167167
'--eval',
@@ -170,6 +170,8 @@ const supportsNodeColonModulePrefixInImport = (() => {
170170
{reject: false},
171171
);
172172

173+
console.log('is supported???', {stdout, stderr});
174+
173175
return stdout === 'true';
174176
})();
175177

0 commit comments

Comments
 (0)