From 38c0f72142891dfac9bfe25dc5fe9babeee18bdc Mon Sep 17 00:00:00 2001 From: Sid Vishnoi <8426945+sidvishnoi@users.noreply.github.com> Date: Wed, 8 Jan 2025 18:07:18 +0530 Subject: [PATCH] format fixes on merge branch --- tests/e2e/fixtures/base.ts | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/tests/e2e/fixtures/base.ts b/tests/e2e/fixtures/base.ts index bdf6db72..d3da45cb 100644 --- a/tests/e2e/fixtures/base.ts +++ b/tests/e2e/fixtures/base.ts @@ -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,