From a4d412fb537aee6d655a819fbc199594ca95e916 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Thu, 6 Sep 2018 14:22:38 -0400 Subject: [PATCH] increase timeout so that tests pass on this horrendously expensive piece of shit laptop i am forced to use. PS fuck you, apple --- test/cli/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/cli/index.js b/test/cli/index.js index 83f72cae77..4edeab97da 100644 --- a/test/cli/index.js +++ b/test/cli/index.js @@ -18,7 +18,9 @@ function normalize(str) { const cwd = process.cwd(); -describe('cli', () => { +describe('cli', function() { + this.timeout(10000); + afterEach(() => { process.chdir(cwd); });