From 288178bf02984c7e6dc69241918b88234a0dcb91 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 10 Aug 2018 17:49:12 +0200 Subject: Try to fix travis tests --- server/tests/utils/miscs/miscs.ts | 31 ++++++++++++------------------- 1 file changed, 12 insertions(+), 19 deletions(-) (limited to 'server/tests/utils') diff --git a/server/tests/utils/miscs/miscs.ts b/server/tests/utils/miscs/miscs.ts index 5e46004a7..b0667491b 100644 --- a/server/tests/utils/miscs/miscs.ts +++ b/server/tests/utils/miscs/miscs.ts @@ -37,25 +37,18 @@ function root () { } async function testImage (url: string, imageName: string, imagePath: string, extension = '.jpg') { - // Don't test images if the node env is not set - // Because we need a special ffmpeg version for this test - if (process.env[ 'NODE_TEST_IMAGE' ]) { - const res = await request(url) - .get(imagePath) - .expect(200) - - const body = res.body - - const data = await readFileBufferPromise(join(__dirname, '..', '..', 'fixtures', imageName + extension)) - const minLength = body.length - ((20 * body.length) / 100) - const maxLength = body.length + ((20 * body.length) / 100) - - expect(data.length).to.be.above(minLength) - expect(data.length).to.be.below(maxLength) - } else { - console.log('Do not test images. Enable it by setting NODE_TEST_IMAGE env variable.') - return true - } + const res = await request(url) + .get(imagePath) + .expect(200) + + const body = res.body + + const data = await readFileBufferPromise(join(__dirname, '..', '..', 'fixtures', imageName + extension)) + const minLength = body.length - ((20 * body.length) / 100) + const maxLength = body.length + ((20 * body.length) / 100) + + expect(data.length).to.be.above(minLength) + expect(data.length).to.be.below(maxLength) } function buildAbsoluteFixturePath (path: string) { -- cgit v1.2.3