Skip to content

Commit

Permalink
wdio-cli: fix typo (#3828)
Browse files Browse the repository at this point in the history
## Proposed changes

Replace log string `tests` by `test suites` on stdout.

## Types of changes

- [x] Bugfix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)

## Checklist

- [x] I have read the [CONTRIBUTING](https://github.com/webdriverio/webdriverio/blob/master/CONTRIBUTING.md) doc
- [ ] I have added tests that prove my fix is effective or that my feature works
- [ ] I have added necessary documentation (if appropriate)

### Reviewers: @webdriverio/technical-committee
  • Loading branch information
carlos-gva authored and christian-bromann committed Apr 9, 2019
1 parent 4705847 commit f46c0fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/wdio-cli/src/interface.js
Expand Up @@ -236,10 +236,10 @@ export default class WDIOCLInterface extends EventEmitter {
if (runningJobs > MAX_RUNNING_JOBS_DISPLAY_COUNT) {
logString.push(
runningJobs - MAX_RUNNING_JOBS_DISPLAY_COUNT,
'running tests' + (pendingJobs ? ' -' : ''))
'running test suites' + (pendingJobs ? ' -' : ''))
}
if (pendingJobs) {
logString.push(pendingJobs, 'pending tests')
logString.push(pendingJobs, 'pending test suites')
}
this.display.push(chalk.yellow('...', ...logString.filter(l => Boolean(l))))
}
Expand Down

0 comments on commit f46c0fe

Please sign in to comment.