Increase timeouts

This commit is contained in:
Nathan Sobo
2015-11-08 23:09:19 -07:00
parent fc5788c43b
commit a35e24658d
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ exports.afterEach = (fn) ->
waitsForPromise = (fn) ->
promise = fn()
waitsFor 10000, (done) ->
waitsFor 30000, (done) ->
promise.then(
done,
(error) ->

View File

@@ -4737,7 +4737,7 @@ describe('TextEditorComponent', function () {
let timeout = window.setTimeout(function () {
timeoutError.message += ' Frame pending? ' + atom.views.animationFrameRequest + ' Same next update promise pending? ' + (nextUpdatePromise === atom.views.nextUpdatePromise)
reject(timeoutError)
}, 5000)
}, 30000)
})
}