From a8ddcae57af47943c8d0f2aa483cb07b156348e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Marchand?= <1673467+uncycler@users.noreply.github.com> Date: Thu, 16 Sep 2021 08:42:49 +0200 Subject: [PATCH] test: fix vscode jest timeout (#11764) Co-authored-by: Michael Kriese --- .vscode/launch.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index cedef1459c4c08..6989fa435d125d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -22,7 +22,7 @@ "args": [ "--runInBand", "--collectCoverage=false", - "--testTimeout 100000000", + "--testTimeout=100000000", "--runTestsByPath", "${relativeFile}" ], @@ -46,7 +46,7 @@ "args": [ "--runInBand", "--collectCoverage=false", - "--testTimeout 100000000" + "--testTimeout=100000000" ], "env": { "NODE_ENV": "test", @@ -73,7 +73,7 @@ "jest", "--runInBand", "--watchAll=false", - "--testTimeout 100000000" + "--testTimeout=100000000" ] } ]