From b45f88357b6b89223c1ca3aec3a63efaba2932a7 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Thu, 10 Oct 2019 14:25:41 +0200 Subject: [PATCH] chore(tests): raise tests execution timeout to 10s --- setupJest.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setupJest.ts b/setupJest.ts index 0bd6170a9..d4faf7de9 100644 --- a/setupJest.ts +++ b/setupJest.ts @@ -5,6 +5,8 @@ let accessSpy: jest.SpyInstance; const { readFile, access } = fs; +jest.setTimeout(10 * 1000); + beforeEach(() => { readFileSpy = jest.spyOn(fs, 'readFile'); accessSpy = jest.spyOn(fs, 'access');