test that Aspell is killed by timeout

This commit is contained in:
Brian Gough 2015-03-04 16:44:13 +00:00
parent a49f80cb21
commit c549d29d8e

View file

@ -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()