Commit 0eb189e1 0eb189e1b2282ff43d5a3ee2be023fb4da389171 by Nicolas Perriault

simplified external module tests

1 parent 4b50af75
try
exports.ok = true
catch e
casper.test.fail('error in coffeescript module code: ' + e)
casper.test.done()
exports.ok = true
......
/*global casper*/
try {
exports.ok = true;
} catch (e) {
casper.test.fail('error in js module code' + e);
casper.test.done()
}
exports.ok = true;
......