From 656cb0f700e6ddee6363d43d00104194f1649a91 Mon Sep 17 00:00:00 2001 From: IKEDA Sho <suicaicoca@gmail.com> Date: Thu, 5 Sep 2019 15:59:44 +0900 Subject: [PATCH] test: Use relativeFile over fileBasenameNoExtension in vscode launch configuration (#4411) test: Use relativeFile over fileBasenameNoExtension in vscode launch configuration --- .vscode/launch.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index c72c3d3088..6957fbd70e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -22,7 +22,8 @@ "args": [ "--runInBand", "--collectCoverage=false", - "${fileBasenameNoExtension}" + "--runTestsByPath", + "${relativeFile}" ], "env": { "NODE_ENV": "test", "LOG_LEVEL": "debug" }, "console": "integratedTerminal", -- GitLab