From e92f3a3778b343f6b22503244fb9849396493e2a Mon Sep 17 00:00:00 2001 From: Nikita Skovoroda Date: Fri, 12 Jul 2024 11:57:59 +0300 Subject: [PATCH] fix wording --- bin/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/index.js b/bin/index.js index f4d5db7..d847469 100755 --- a/bin/index.js +++ b/bin/index.js @@ -178,11 +178,11 @@ const allfiles = await glob(patterns, { ignore }) if (allfiles.length === 0) { if (options.passWithNoTests) { - console.warn('No tests files found, but passing due to --passWithNoTests') + console.warn('No test files found, but passing due to --passWithNoTests') process.exit(0) } - console.error('No tests files found!') + console.error('No test files found!') process.exit(1) } @@ -198,7 +198,7 @@ if (process.env.EXODUS_TEST_SELECT) { } if (subfiles.length === 0) { - console.error('No tests files selected due to EXODUS_TEST_SELECT, passing') + console.error('No test files selected due to EXODUS_TEST_SELECT, passing') process.exit(0) } }