From c4ed7ed2de9c4c161518ab1d1fc50877df4c7fa2 Mon Sep 17 00:00:00 2001 From: lancerutkin Date: Thu, 5 Mar 2020 20:43:51 -0500 Subject: [PATCH] fix: reset jest set timeout to original value --- test/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.test.ts b/test/index.test.ts index ebf5e71..e07b867 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -5,7 +5,7 @@ import * as path from 'path'; const docker = new Docker(); // Docker commands, especially builds, can take some time. This makes sure that they can take the time they need. -jest.setTimeout(50000); +jest.setTimeout(25000); // Set to true if you need to diagnose using output const logOutput = false;