diff --git a/tests/helpers/run.js b/tests/helpers/run.js index ec6963489..ff1dabf69 100644 --- a/tests/helpers/run.js +++ b/tests/helpers/run.js @@ -14,7 +14,7 @@ const run = async (tests) => { const test = tests[i]; let expectedOutput; - if (test.output[os.platform()]) { + if (test.output[os.platform()] !== undefined) { expectedOutput = test.output[os.platform()]; } else { expectedOutput = test.output;