Skip to content

Commit

Permalink
refactor: typo onFullFilled -> onFulFilled (#6973)
Browse files Browse the repository at this point in the history
  • Loading branch information
fgordillo authored Nov 27, 2024
1 parent 7b35d13 commit 1fa16f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/expect/src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ export function recordAsyncExpect(
})

return {
then(onFullfilled, onRejected) {
then(onFulfilled, onRejected) {
resolved = true
return promise.then(onFullfilled, onRejected)
return promise.then(onFulfilled, onRejected)
},
catch(onRejected) {
return promise.catch(onRejected)
Expand Down

0 comments on commit 1fa16f9

Please sign in to comment.