From 03e28d0327538cbaf3dd1412a5e6cb757d609307 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Mon, 20 May 2024 22:12:05 +0200 Subject: [PATCH] Revert launch.json --- .vscode/launch.json | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 4730820e1..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "PowerShell: Launch Current File", - "type": "PowerShell", - "request": "launch", - "script": "${file}", - "args": [] - }, - { - "name": "Pester: Tests from current file", - "type": "PowerShell", - "request": "launch", - "script": "${workspaceFolder}/test.ps1", - "args": [ - "-File", - "${file}", - "-VSCode" - ] - }, - { - "name": "Pester: All tests", - "type": "PowerShell", - "request": "launch", - "script": "${workspaceFolder}/test.ps1", - "args": [] - } - ] -}