You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, in the calyptus-hill.js test, in the after function we can see the following code:
bribe = await this.calyptusHill.bribe();
if (
expect(await this.calyptusHill.atTheTop()).not.to.equal(alice.address)
) {
console.log(`You have passed the ${challengeName}.`);
}
Am I right that bribe = await this.calyptusHill.bribe(); doesn't do anything? Afterall, its just a getter and I don't think it can influence the success of the condition below
The text was updated successfully, but these errors were encountered:
Hello, in the
calyptus-hill.js
test, in theafter
function we can see the following code:Am I right that
bribe = await this.calyptusHill.bribe();
doesn't do anything? Afterall, its just a getter and I don't think it can influence the success of the condition belowThe text was updated successfully, but these errors were encountered: