Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

4
  • IMHO This allows for real unit testing as opposed to integration testing with your rpc client. Commented Apr 10, 2016 at 16:47
  • 1
    If you are doing mostly solidity-solidity code, this is a good approach. If you are writing an app with a lot of interaction with off-chain components I'd advise the other answer using truffle/pudding (or create your own) Commented Apr 10, 2016 at 19:10
  • OP is not asking about unit testing, why don't you use Truffle or Embark? Commented Apr 11, 2016 at 1:52
  • 1
    Truffle and Embark make a lot of sense for building browser-based dapps, and they're great for integration tests. But it's also nice to be able to isolate the thing you're testing and write unit tests. Most of my work is purely in Solidity, with other team members handling integration and user-facing components. Given my use case, Dapple is ideal. Probably also doesn't hurt that I helped make it! Commented Apr 11, 2016 at 3:28