Files
zulip/frontend_tests/casperjs/samples/each.js
Tim Abbott f1074aa491 Move frontend tests out of zerver/tests/.
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.
2015-10-28 10:11:47 -07:00

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();