From ea892dd1c310aa40beacac0910c96887671cb136 Mon Sep 17 00:00:00 2001 From: HaveAGitGat <43864057+HaveAGitGat@users.noreply.github.com> Date: Mon, 23 May 2022 07:46:37 +0100 Subject: [PATCH] Log os --- tests/helpers/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/helpers/run.js b/tests/helpers/run.js index a11c6e0..ec69634 100644 --- a/tests/helpers/run.js +++ b/tests/helpers/run.js @@ -10,7 +10,7 @@ const run = async (tests) => { try { for (let i = 0; i < tests.length; i += 1) { // eslint-disable-next-line no-console - console.log(`${scriptName}: test ${i}`); + console.log(`[${os.platform()}] ${scriptName}: test ${i}`); const test = tests[i]; let expectedOutput;