Lesson 9: AssertionError: expected undefined to equal false #3192
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@Codeinor Or It could be the spelling difference in returned value vs retrieving value. |
Beta Was this translation helpful? Give feedback.
-
@Codeinor : Correct your spelling of From : In this line of your test :
It should resolve your issue! |
Beta Was this translation helpful? Give feedback.
@Codeinor : Correct your spelling of
upkeepNeeded
:From :
upKeepNeeded
To :upkeepNeeded
In this line of your test :
From this :
const { upKeepNeeded } = await raffle.callStatic.checkUpkeep([])
To this :
const { upkeepNeeded } = await raffle.callStatic.checkUpkeep([])
It should resolve your issue!