timeout does not need async test here

This commit is contained in:
Brian Gough 2015-05-20 11:45:17 +01:00
parent da7250c6f2
commit 6e0d72a3b1

View file

@ -61,7 +61,6 @@ describe "ASpell", ->
# Note that this test fails on OS X, due to differing pipe behaviour # Note that this test fails on OS X, due to differing pipe behaviour
# on killing the child process. It can be tested successfully on Travis # on killing the child process. It can be tested successfully on Travis
# or the CI server. # or the CI server.
it "should return in reasonable time", (done) -> it "should return in reasonable time", () ->
delta = Date.now()-@start delta = Date.now()-@start
delta.should.be.below(@ASpell.ASPELL_TIMEOUT + 100) delta.should.be.below(@ASpell.ASPELL_TIMEOUT + 100)
done()