-
Hello @alymurtazamemon Finishing lesson 9 and getting this error message - YIKES!!!! Both VRF SubId and Raffle Upkeep worked. here is the repo https://github.com/Cielo2021/raffle When I execute npx hardhat test --network goerli I a get the following message: Raffle Stating Tests 0 passing (8m)
staging.test.js developmentChains.includes(network.name)
` |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 13 replies
-
@Cielo2021 A bunch of people ran into this problem (Me included). No know solution was provided then but maybe by now it has been identified, I had to skip it and will circle back to it after the course is complete (Tag me if you find a solution please!) |
Beta Was this translation helpful? Give feedback.
-
Hello @Cielo2021 In my case there was problem with Chainlink Keeper setup as it has to be setup as custom one. you can also try to clone repository and try if it works once you update all details. |
Beta Was this translation helpful? Give feedback.
-
Hello @Cielo2021. Here you can see the contract I deployed and in the Internal Txs tab you will see the invocations of Your code works fine, now there's something I don't understand, let me explain: When I forked and cloned your repo I manually deleted the When I tried to compile with The reason I'm saying all of this is: if all those dependencies were missing, I don't understand how managed to complete so much of the project without that error. Can you send a screenshot of your |
Beta Was this translation helpful? Give feedback.
Hello @Cielo2021. Here you can see the contract I deployed and in the Internal Txs tab you will see the invocations of
performUpkeep
andfulfillRandomWords
.Your code works fine, now there's something I don't understand, let me explain:
When I forked and cloned your repo I manually deleted the
artifacts
,cache
,deployments
,package-lock.json
andnode_modules
folders. To have a clean slate. Then I ranyarn
and installed the dependencies.When I tried to compile with
yarn hardhat compile
I immediately got an error from hardhat telling me about a bunch of plugins that were missing, I checked thepackage.json
file and indeed a lot of dependencies were missing more than half accordingly to har…