Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
elonmallin committed Dec 11, 2023
1 parent 8f7de9b commit f4c2d8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/PhpunitCommand/PhpunitArgBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ export class PhpunitArgBuilder {
let args = [
...(this.configFile ? ["--configuration", this.configFile] : []),
...(this.color ? [`--colors=${this.color}`] : []),
...(this.suites.length > 0 ? ["--testsuite", `'${this.suites.join(",")}'`] : []),
...(this.suites.length > 0
? ["--testsuite", `'${this.suites.join(",")}'`]
: []),
...(this.filter ? ["--filter", `'${this.filter}'`] : []),
...(this.groups.length > 0 ? ["--group", this.groups.join(",")] : []),
...this.args,
Expand Down

0 comments on commit f4c2d8e

Please sign in to comment.