zulip/frontend_tests/casperjs/tests/commands/mytest.js

15 lines
285 B
JavaScript

/*jshint strict:false*/
/*global CasperError casper console phantom require*/
casper.start('about:blank', function() {
this.test.pass('ok1');
});
casper.then(function() {
this.test.pass('ok2');
});
casper.run(function() {
this.test.pass('ok3');
this.test.done();
});