Skip to content

Commit

Permalink
Remove .only in unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
clemire committed Sep 6, 2024
1 parent c9509fc commit addd3cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web3/src/entitlement.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,7 @@ const errorTests = [
},
]

test.only.each(errorTests)('error - $desc', async (props) => {
test.each(errorTests)('error - $desc', async (props) => {
const { check, error } = props
const controller = new AbortController()
await expect(
Expand Down

0 comments on commit addd3cb

Please sign in to comment.