Skip to content

Commit

Permalink
fix: build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
markuczy committed Nov 6, 2024
1 parent 866d5ed commit bfee98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/angular-testing/src/lib/harnesses/span.harness.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class SpanHarness extends ComponentHarness {
static with(options: SpanHarnessFilters): HarnessPredicate<SpanHarness> {
return new HarnessPredicate(SpanHarness, options)
.addOption('class', options.class, (harness, c) => HarnessPredicate.stringMatches(harness.getByClass(c), c))
.addOption('id', options.id, (harness, id) => HarnessPredicate.stringMatches(harness.getId(id), id))
.addOption('id', options.id, (harness, id) => HarnessPredicate.stringMatches(harness.getId(), id))
}

static without(options: SpanHarnessFilters): HarnessPredicate<SpanHarness> {
Expand Down

0 comments on commit bfee98e

Please sign in to comment.