We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04de119 commit d52acfbCopy full SHA for d52acfb
packages/cli/src/commands/test.ts
@@ -203,7 +203,7 @@ export default class Test extends AuthCommand {
203
const checkGroup = this.getCheckGroup(project, check)
204
if (checkGroup) {
205
const checkGroupTags = checkGroup.tags ?? []
206
- tags.concat(checkGroupTags)
+ tags.push(...checkGroupTags)
207
}
208
return filterByTags(targetTags?.map((tags: string) => tags.split(',')) ?? [], tags)
209
})
0 commit comments