Skip to content

Commit

Permalink
fix wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ChALkeR committed Jul 12, 2024
1 parent 03271d1 commit e92f3a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand All @@ -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)
}
}
Expand Down

0 comments on commit e92f3a3

Please sign in to comment.