Skip to content

Commit

Permalink
mergeByLabel improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
matepek committed Jul 23, 2023
1 parent a427f97 commit f3183d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/AbstractExecutable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ export abstract class AbstractExecutable<TestT extends AbstractTest = AbstractTe
this._updateVarsWithTags(g, tags, tagsResolveRule);

const optionHash = this.shared.optionsHash;
const id = g.mergeByLabel === true ? undefined : this.shared.path + `#${optionHash}`;
const id = (g.mergeByLabel === true ? '' : this.shared.path) + `#${optionHash}`;
const label = g.label ?? '${filename}';
const description = g.description ?? '${relDirpath}${osPathSep}';

Expand Down

0 comments on commit f3183d9

Please sign in to comment.