UNPKG

2.75 kBJSONView Raw
1{
2 // Use IntelliSense to learn about possible Node.js debug attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
8 "type": "node",
9 "request": "launch",
10 "env": {
11 "AZURITE_LOCATION": "azurite-testdrive"
12 },
13 "name": "Mocha Tests",
14 "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
15 "args": [
16 "-u",
17 "tdd",
18 "--timeout",
19 "999999",
20 "--colors",
21 "${workspaceRoot}/test"
22 ],
23 "internalConsoleOptions": "openOnSessionStart",
24 "protocol": "inspector"
25 },
26 {
27 "type": "node",
28 "request": "launch",
29 "protocol": "auto",
30 "name": "Launch Azurite",
31 "program": "${workspaceRoot}/bin/azurite",
32 "cwd": "${workspaceRoot}",
33 "args": [
34 "-l",
35 "${workspaceRoot}/azurite-testdrive"
36 ],
37 "skipFiles": [
38 "node_modules/**/*.js"
39 ]
40 },
41 {
42 "type": "node",
43 "request": "launch",
44 "protocol": "auto",
45 "name": "Launch Blob only",
46 "program": "${workspaceRoot}/bin/blob",
47 "cwd": "${workspaceRoot}",
48 "args": [
49 "-l",
50 "${workspaceRoot}/azurite-testdrive"
51 ],
52 "skipFiles": [
53 "node_modules/**/*.js"
54 ]
55 },
56 {
57 "type": "node",
58 "request": "launch",
59 "protocol": "auto",
60 "name": "Launch Queue only",
61 "program": "${workspaceRoot}/bin/queue",
62 "cwd": "${workspaceRoot}",
63 "args": [
64 "-l",
65 "${workspaceRoot}/azurite-testdrive"
66 ],
67 "skipFiles": [
68 "node_modules/**/*.js"
69 ]
70 },
71 {
72 "type": "node",
73 "request": "launch",
74 "protocol": "auto",
75 "name": "Launch Table only",
76 "program": "${workspaceRoot}/bin/table",
77 "cwd": "${workspaceRoot}",
78 "args": [
79 "-l",
80 "${workspaceRoot}/azurite-testdrive"
81 ],
82 "skipFiles": [
83 "node_modules/**/*.js"
84 ]
85 },
86 {
87 "type": "node",
88 "request": "attach",
89 "name": "Attach to Process",
90 "port": 5858
91 }
92 ]
93}
\No newline at end of file