Dimitri
Dimitri

Reputation: 301

Code coverage tools for qooxdoo

qooxdoo offers an excellent unit testing framework, but no code coverage tools. Coveralls is great, but only for public projects; what about private/commercial or projects that are yet to be published?

There are a lot of JavaScript code coverage tools around: Blanket.js, Istanbul, JSCover... but considering qooxdoo's complexity and its application construction principles, applying one of these might turn into a non-trivial problem. Has anyone had any success with the tools listed above? Which one works best (if at all)?

Upvotes: 0

Views: 118

Answers (1)

Tobi Oetiker
Tobi Oetiker

Reputation: 5450

The qooxdoo framework itself uses karma to run its test suit on travis and karma-coverage to report coverage to coveralls. The qooxdoo karma integration is in https://github.com/qooxdoo/karma-qooxdoo which you can install via npm.

If you use the qooxdoo testing framework, then this might be your best bet, since qooxdoo core development relies on this as well.

Upvotes: 2

Related Questions