From 23e9106fdd428d3d1f1f739e2c78830d518bee80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ramirez=20Nicol=C3=A1s?= Date: Mon, 4 Oct 2021 18:08:45 -0300 Subject: [PATCH] Fix timeout issue --- tests/cli.mocha.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/cli.mocha.js b/tests/cli.mocha.js index bec09c7..95dd7b7 100644 --- a/tests/cli.mocha.js +++ b/tests/cli.mocha.js @@ -37,7 +37,7 @@ describe('Testing CLI', () => { ); done(); }); - }); + }).timeout(5000); it('should work for more than 32 SVG icons', (done) => { const command = @@ -80,7 +80,7 @@ describe('Testing CLI', () => { ); done(); }); - }); + }).timeout(5000); describe('with nested icons', () => { it('should work', (done) => { @@ -111,6 +111,6 @@ describe('Testing CLI', () => { ); done(); }); - }); + }).timeout(5000); }); });