| Index: appengine/swarming/ui/res/imp/common/pageable-data.html
|
| diff --git a/appengine/swarming/ui/res/imp/common/pageable-data.html b/appengine/swarming/ui/res/imp/common/pageable-data.html
|
| index 48356aa5466e5b56a40a80eb981cc6ddfeb60319..60afe025781077f3fa4e0fbee303617f06d5d200 100644
|
| --- a/appengine/swarming/ui/res/imp/common/pageable-data.html
|
| +++ b/appengine/swarming/ui/res/imp/common/pageable-data.html
|
| @@ -155,10 +155,14 @@
|
| }
|
| this.set("_cursor", json.cursor || END);
|
| this.set("busy", false);
|
| + // for unit testing
|
| + this.fire("_finishedLoading", {success:true});
|
| }.bind(this)).catch(function(reason){
|
| console.log("Reason for failure of request to " + this._url, reason);
|
| sk.errorMessage("Could not get next set of results. Try reloading the page?", 0);
|
| this.set("busy", false);
|
| + // for unit testing
|
| + this.fire("_finishedLoading", {success:false});
|
| }.bind(this));
|
| },
|
|
|
|
|