zulip/zephyr/tests/frontend/casperjs/tests/sample_modules/jsmodule.js

8 lines
139 B
JavaScript
Raw Normal View History

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