Added timeout-message test

This commit is contained in:
Patrick Steele-Idem 2014-08-08 16:36:21 -06:00
parent 20c3cf8e0c
commit 82a8337094

View File

@ -294,5 +294,13 @@ describe('raptor-templates/rhtml-async' , function() {
}, done);
});
it("should allow for a timeout message", function(done) {
testRender('test-project/rhtml-templates/async-fragment-timeout-message.rhtml', {
userInfo: function(arg, done) {
// Do nothing to trigger a timeout
}
}, done);
});
});