mirror of
https://github.com/zulip/zulip.git
synced 2025-11-12 18:06:44 +00:00
This fixes an unfortunate bug where the backend tests in zerver/tests.py were not being run automatically, and also makes these a bit easier to find.
15 lines
285 B
JavaScript
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();
|
|
});
|