mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 14:03:30 +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.
21 lines
380 B
JavaScript
21 lines
380 B
JavaScript
/*jshint strict:false*/
|
|
/*global CasperError console phantom require*/
|
|
|
|
var casper = require("casper").create();
|
|
|
|
var links = [
|
|
"http://google.com/",
|
|
"http://yahoo.com/",
|
|
"http://bing.com/"
|
|
];
|
|
|
|
casper.start();
|
|
|
|
casper.each(links, function(self, link) {
|
|
this.thenOpen(link, function() {
|
|
this.echo(this.getTitle() + " - " + link);
|
|
});
|
|
});
|
|
|
|
casper.run();
|