-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLsiGitCheckout.code-workspace
More file actions
82 lines (82 loc) · 1.95 KB
/
LsiGitCheckout.code-workspace
File metadata and controls
82 lines (82 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"folders": [
{
"path": "."
}
],
"settings": {
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.defaultProfile.linux": "pwsh",
"terminal.integrated.defaultProfile.osx": "pwsh",
"files.associations": {
"*.ps1": "powershell",
"*.psm1": "powershell",
"*.psd1": "powershell"
},
"[powershell]": {
"editor.tabSize": 4,
"editor.insertSpaces": true
}
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Run Unit Tests",
"type": "PowerShell",
"request": "launch",
"script": "Invoke-Pester ./tests/LsiGitCheckout.Unit.Tests.ps1 -Output Detailed",
"createTemporaryIntegratedConsole": true
},
{
"name": "Run Integration Tests",
"type": "PowerShell",
"request": "launch",
"script": "Invoke-Pester ./tests/LsiGitCheckout.Integration.Tests.ps1 -Output Detailed",
"createTemporaryIntegratedConsole": true
},
{
"name": "Run All Tests",
"type": "PowerShell",
"request": "launch",
"script": "Invoke-Pester ./tests/ -Output Detailed",
"createTemporaryIntegratedConsole": true
},
{
"name": "Run Script (DryRun - SemVer)",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder}/LsiGitCheckout.ps1",
"args": [
"-InputFile", "${workspaceFolder}/tests/dependencies_semver.json",
"-DryRun"
],
"createTemporaryIntegratedConsole": true
},
{
"name": "Run Script (Custom Config)",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder}/LsiGitCheckout.ps1",
"args": [
"-InputFile", "${input:configFile}",
"-DryRun"
],
"createTemporaryIntegratedConsole": true
}
],
"inputs": [
{
"id": "configFile",
"type": "promptString",
"description": "Path to dependency configuration JSON file",
"default": "tests/dependencies_semver.json"
}
]
},
"extensions": {
"recommendations": [
"ms-vscode.powershell"
]
}
}