'Issues with missing ")" after argument list in truffle testing
I am trying to test a solidity contract using truffle test suite and I am unable to fix my code. The error reads " Issues with missing ")" after argument list in truffle testing.". I'd greatly appreciate any feedback or help as I have pretty much hit a wall and am unsure how to proceed. I've also added a screenshot of the error I'm receiving. Error stack photo GitHub repository with both the solidity contract and test file
Solution 1:[1]
Edit in line 57
});
to this:
)})});
Also you can use these VS Code extensions to follow brackets and indents:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Yunus YILDIRIM |
