Add an acceptance test to check the preview endpoint doesn't time out.

This endpoint needs a lot more testing.
This commit is contained in:
Shane Kilkelly 2015-09-08 10:32:41 +01:00
parent da5a538095
commit 297ad78b1e

View file

@ -112,3 +112,14 @@ describe "Filestore", ->
request.get newFileUrl, (err, response, body)=> request.get newFileUrl, (err, response, body)=>
body.should.equal @constantFileContent body.should.equal @constantFileContent
done() done()
describe "getting the preview image", ->
beforeEach ->
@fileUrl = @fileUrl + '?style=preview&cacheWarm=true'
it "should not time out", (done) ->
@timeout(1000 * 20)
request.get @fileUrl, (err, response, body) =>
expect(response).to.not.equal null
done()