From f4a1f06ba6fd7efd1b1ad452b0d0ea98c6e333be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20M=C3=A9tais?= Date: Tue, 20 Dec 2016 22:39:32 +0800 Subject: [PATCH] Increase test timeout because it sometimes fails in Travis --- test/core/fontAnalyzerTest.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/core/fontAnalyzerTest.js b/test/core/fontAnalyzerTest.js index 5ad0b13..228af5d 100644 --- a/test/core/fontAnalyzerTest.js +++ b/test/core/fontAnalyzerTest.js @@ -6,6 +6,8 @@ var path = require('path'); describe('fontAnalyzer', function() { it('should extract metrics from a font', function(done) { + this.timeout(10000); + var fileContent = fs.readFileSync(path.resolve(__dirname, '../www/SourceSansPro/SourceSansPro-Regular.woff')); var fileSize = fileContent.length;