mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 08:00:03 +00:00
test that Aspell is killed by timeout
This commit is contained in:
parent
a49f80cb21
commit
c549d29d8e
1 changed files with 4 additions and 3 deletions
|
@ -51,10 +51,11 @@ describe "ASpell", ->
|
|||
describe "when the request times out", ->
|
||||
beforeEach (done) ->
|
||||
words = ("abcdefg" for i in [0..1000])
|
||||
@ASpell.ASPELL_TIMEOUT = 100
|
||||
@start = new Date()
|
||||
@ASpell.ASPELL_TIMEOUT = 1
|
||||
@start = Date.now()
|
||||
@ASpell.checkWords "en", words, (error, @result) => done()
|
||||
|
||||
it "should return in reasonable time", (done) ->
|
||||
delta = Date.now()-@start
|
||||
delta.should.be.below(@ASpell.ASPELL_TIMEOUT + 10)
|
||||
done()
|
||||
|
||||
|
|
Loading…
Reference in a new issue