Skip to content

Commit

Permalink
chore: show excluded paths in terminal, closes #1613
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Jul 8, 2022
1 parent 7ff551b commit 4176614
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/vitest/src/node/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ export class Vitest {
this.console.error(c.dim('filter: ') + c.yellow(filters.join(comma)))
if (this.config.include)
this.console.error(c.dim('include: ') + c.yellow(this.config.include.join(comma)))
if (this.config.exclude)
this.console.error(c.dim('exclude: ') + c.yellow(this.config.exclude.join(comma)))
if (this.config.watchExclude)
this.console.error(c.dim('watch exclude: ') + c.yellow(this.config.watchExclude.join(comma)))

Expand Down

0 comments on commit 4176614

Please sign in to comment.