mirror of https://github.com/zulip/zulip.git
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
/*global casper*/
|
|
/*jshint strict:false*/
|
|
|
|
var ok = false;
|
|
|
|
casper.on('remote.alert', function(message) {
|
|
ok = message === 'plop';
|
|
});
|
|
|
|
casper.start('tests/site/alert.html').run(function() {
|
|
this.test.assert(ok, 'alert event has been intercepted');
|
|
this.removeAllListeners('remote.alert');
|
|
this.test.done(1);
|
|
});
|