From 84aa086daad8e1064399a503be554f6f12312b29 Mon Sep 17 00:00:00 2001 From: Nichole Frey Date: Thu, 7 Mar 2024 13:47:47 -0500 Subject: [PATCH] vscode launch entries for tests (#77) --- .vscode/launch.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index cc8b8ba..d5ffc03 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -23,6 +23,18 @@ "uriFormat": "%s", "action": "debugWithChrome" } + }, + { + "name": "Next.js: tests", + "type": "node-terminal", + "request": "launch", + "command": "yarn test" + }, + { + "name": "Next.js: watch tests", + "type": "node-terminal", + "request": "launch", + "command": "yarn test:watch" } ] }