Skip to content

Commit

Permalink
Fix timeout issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ramirezcgn committed Oct 4, 2021
1 parent e1a117e commit 23e9106
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/cli.mocha.js
Expand Up @@ -37,7 +37,7 @@ describe('Testing CLI', () => {
);
done();
});
});
}).timeout(5000);

it('should work for more than 32 SVG icons', (done) => {
const command =
Expand Down Expand Up @@ -80,7 +80,7 @@ describe('Testing CLI', () => {
);
done();
});
});
}).timeout(5000);

describe('with nested icons', () => {
it('should work', (done) => {
Expand Down Expand Up @@ -111,6 +111,6 @@ describe('Testing CLI', () => {
);
done();
});
});
}).timeout(5000);
});
});

0 comments on commit 23e9106

Please sign in to comment.