We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey there,
having troubles with the test on this, there's a variable that is assigned but is not declared anywhere in the file
https://github.com/dabit3/complete-guide-to-full-stack-solana-development/blob/main/example1/tests/example1.js (line 24)
_baseAccount = baseAccount;
but there is no declaration as shown on the test error n,
The text was updated successfully, but these errors were encountered:
let _baseAccount; in the describe function block should fix that. This is used to store the account between both the tests for reuse.
let _baseAccount;
describe
Sorry, something went wrong.
Thanks yeah I thought so. I'll make a PR with the correction
No branches or pull requests
Hey there,
having troubles with the test on this, there's a variable that is assigned but is not declared anywhere in the file
https://github.com/dabit3/complete-guide-to-full-stack-solana-development/blob/main/example1/tests/example1.js
(line 24)
but there is no declaration as shown on the test error
n,
The text was updated successfully, but these errors were encountered: