Skip to content

Commit

Permalink
format fixes on merge branch
Browse files Browse the repository at this point in the history
  • Loading branch information
sidvishnoi committed Jan 8, 2025
1 parent 6bd5322 commit 38c0f72
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions tests/e2e/fixtures/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,19 @@ export const expect = test.expect.extend({
? () =>
`${this.utils.matcherHint(assertionName, undefined, undefined, {
isNot: this.isNot,
})}\n\nExpected: not ${this.utils.printExpected(expected)}\n${matcherResult
? `Received: ${this.utils.printReceived(matcherResult.actual)}`
: ''}`
})}\n\nExpected: not ${this.utils.printExpected(expected)}\n${
matcherResult
? `Received: ${this.utils.printReceived(matcherResult.actual)}`
: ''
}`
: () =>
`${this.utils.matcherHint(assertionName, undefined, undefined, {
isNot: this.isNot,
})}\n\nExpected: ${this.utils.printExpected(expected)}\n${matcherResult
? `Received: ${this.utils.printReceived(matcherResult.actual)}`
: ''}`;
})}\n\nExpected: ${this.utils.printExpected(expected)}\n${
matcherResult
? `Received: ${this.utils.printReceived(matcherResult.actual)}`
: ''
}`;

return {
name: assertionName,
Expand Down

0 comments on commit 38c0f72

Please sign in to comment.