tikiwiki/packages/tiki-pkg-casperjs/jerome-breton/casperjs/tests/clitests/tester/mytest.js
2023-11-20 20:52:04 +00:00

15 lines
281 B
JavaScript
Executable File

/*eslint strict:0*/
/*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();
});