Skip to content

Commit b10d4ea

Browse files
committed
FMT
1 parent 5496eb0 commit b10d4ea

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/rules/prefer-web-first-assertions.test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,9 @@ runRuleTester('prefer-web-first-assertions', rule, {
583583
output: test('await expect.soft(foo).toHaveText("bar")'),
584584
},
585585
{
586-
code: test('expect["soft"](await foo.allTextContents()).not.toEqual("bar")'),
586+
code: test(
587+
'expect["soft"](await foo.allTextContents()).not.toEqual("bar")',
588+
),
587589
errors: [
588590
{
589591
column: 28,
@@ -834,7 +836,9 @@ runRuleTester('prefer-web-first-assertions', rule, {
834836
output: test('await expect.soft(foo).toHaveText("bar")'),
835837
},
836838
{
837-
code: test('expect["soft"](await foo.allInnerTexts()).not.toEqual("bar")'),
839+
code: test(
840+
'expect["soft"](await foo.allInnerTexts()).not.toEqual("bar")',
841+
),
838842
errors: [
839843
{
840844
column: 28,

0 commit comments

Comments
 (0)