forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
145 lines (145 loc) · 3.67 KB
/
launch.json
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
// 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": "Debug dry run",
"type": "rdbg",
"request": "launch",
"script": "${workspaceRoot}/bin/dry-run.rb",
"cwd": "${workspaceRoot}",
"useBundler": true,
"args": [
"${input:package_manager}",
"${input:repository}"
]
},
{
"name": "Debug Tests",
"type": "rdbg",
"request": "launch",
"script": "${workspaceRoot}/omnibus/.bundle/bin/rspec",
"cwd": "${workspaceRoot}/${input:ecosystem}",
"useBundler": true,
"args": [
"${input:test_path}"
],
},
{
"type": "rdbg",
"name": "Attach with rdbg",
"request": "attach"
},
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"program": "${workspaceFolder}/npm_and_yarn/helpers/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"-c",
"${workspaceFolder}/npm_and_yarn/helpers/jest.config.js"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
},
{
"type": "node",
"name": "Run jest tests (watch)",
"request": "launch",
"program": "${workspaceFolder}/npm_and_yarn/helpers/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--watchAll",
"-c",
"${workspaceFolder}/npm_and_yarn/helpers/jest.config.js"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
},
{
"type": "node",
"name": "Run jest tests on opened file (watch)",
"request": "launch",
"program": "${workspaceFolder}/npm_and_yarn/helpers/node_modules/jest/bin/jest.js",
"args": [
"${fileBasenameNoExtension}",
"--runInBand",
"--watchAll",
"-c",
"${workspaceFolder}/npm_and_yarn/helpers/jest.config.js"
],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"disableOptimisticBPs": true
}
],
"inputs": [
{
"type": "pickString",
"id": "package_manager",
"description": "What type of package manager do you want to debug?",
"options": [
"bundler",
"cargo",
"composer",
"dep",
"docker",
"elm",
"github_actions",
"go_modules",
"gradle",
"hex",
"maven",
"npm_and_yarn",
"nuget",
"pip",
"submodules",
"terraform"
],
"default": "go_modules"
},
{
"type": "pickString",
"id": "ecosystem",
"description": "What type of ecosystem tests do you want to debug?",
"options": [
"bundler",
"cargo",
"common",
"composer",
"docker",
"elm",
"github_actions",
"go_modules",
"gradle",
"hex",
"maven",
"npm_and_yarn",
"nuget",
"python",
"terraform"
],
"default": "python"
},
{
"type": "promptString",
"id": "test_path",
"description": "Enter the path of the test(s) to run.",
"default": "spec"
},
{
"type": "promptString",
"id": "repository",
"description": "Enter the name of the repository to scan.",
"default": "zonedb/zonedb"
}
]
}