Revert "Decrease spec timeouts"

This reverts commit a9da862678.
This commit is contained in:
Wliu
2016-05-05 20:42:17 -04:00
parent 02d7bdeaaa
commit 3268765341
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -5118,7 +5118,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)
})
}