Bump timeouts to try and avoid unnecessary test failures on Travis

This commit is contained in:
JC Brand 2018-03-30 15:24:57 +02:00
parent b765f31cec
commit b39429b229

View File

@ -1569,7 +1569,7 @@
test_utils.waitUntil(function () {
return $(view.el).find('.chat-content').find('.chat-message img').length;
}, 500).then(function () {
}, 1000).then(function () {
expect(view.sendMessage).toHaveBeenCalled();
var msg = $(view.el).find('.chat-content').find('.chat-message').last().find('.chat-msg-content');
expect(msg.html()).toEqual(
@ -1579,7 +1579,7 @@
test_utils.sendMessage(view, message);
return test_utils.waitUntil(function () {
return $(view.el).find('.chat-content').find('.chat-message img').length === 2;
}, 500);
}, 1000);
}).then(function () {
expect(view.sendMessage).toHaveBeenCalled();
var msg = $(view.el).find('.chat-content').find('.chat-message').last().find('.chat-msg-content');