Skip to content

Commit 592c128

Browse files
committed
test(no-wait-for-multiple-assertions): increase code coverage up to 100%
1 parent 98448bb commit 592c128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/lib/rules/no-wait-for-multiple-assertions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ ruleTester.run(RULE_NAME, rule, {
198198
code: `
199199
await waitFor(async function() {
200200
expect(a).toEqual('a')
201-
await somethingAsync()
201+
const el = await somethingAsync()
202202
expect(b).toEqual('b')
203203
})
204204
`,

0 commit comments

Comments
 (0)