tikiwiki/packages/tiki-pkg-casperjs/jerome-breton/casperjs/tests/clitests/tester/mytest.js

15 lines
281 B
JavaScript
Raw Permalink Normal View History

2023-11-20 21:52:04 +01:00
/*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();
});