|
1 | 1 | { |
2 | | - // Use IntelliSense to learn about possible 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 | | - "name": "Run node samples", |
11 | | - "program": "${workspaceRoot}/samples/node/main.js", |
12 | | - "cwd": "${workspaceRoot}", |
13 | | - "outFiles": [], |
14 | | - "internalConsoleOptions": "openOnSessionStart" |
15 | | - }, |
16 | | - { |
17 | | - "type": "node", |
18 | | - "request": "launch", |
19 | | - "name": "Run core tests", |
20 | | - "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", |
21 | | - "args": [ |
22 | | - "${workspaceRoot}/lib/spec/core/*.js" |
23 | | - ], |
24 | | - "cwd": "${workspaceRoot}", |
25 | | - "preLaunchTask": "Run Build", |
26 | | - "outFiles": [], |
27 | | - "internalConsoleOptions": "openOnSessionStart" |
28 | | - }, |
29 | | - { |
30 | | - "type": "node", |
31 | | - "request": "launch", |
32 | | - "name": "Run workload tests", |
33 | | - "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", |
34 | | - "args": [ |
35 | | - "${workspaceRoot}/spec/development/workload/*.js" |
36 | | - ], |
37 | | - "cwd": "${workspaceRoot}", |
38 | | - "preLaunchTask": "Run Build", |
39 | | - "outFiles": [], |
40 | | - "internalConsoleOptions": "openOnSessionStart" |
41 | | - }, |
42 | | - { |
43 | | - "type": "node", |
44 | | - "request": "launch", |
45 | | - "name": "Run middleware tests", |
46 | | - "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", |
47 | | - "args": [ |
48 | | - "${workspaceRoot}/spec/middleware/*.js" |
49 | | - ], |
50 | | - "cwd": "${workspaceRoot}", |
51 | | - "preLaunchTask": "Run Build", |
52 | | - "outFiles": [], |
53 | | - "internalConsoleOptions": "openOnSessionStart" |
54 | | - } |
55 | | - ] |
| 2 | + // Use IntelliSense to learn about possible 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 | + "name": "Run node samples", |
| 11 | + "program": "${workspaceRoot}/samples/node/main.js", |
| 12 | + "cwd": "${workspaceRoot}", |
| 13 | + "outFiles": [], |
| 14 | + "internalConsoleOptions": "openOnSessionStart" |
| 15 | + }, |
| 16 | + { |
| 17 | + "type": "node", |
| 18 | + "request": "launch", |
| 19 | + "name": "Run core tests", |
| 20 | + "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", |
| 21 | + "args": ["${workspaceRoot}/lib/spec/core/*.js"], |
| 22 | + "cwd": "${workspaceRoot}", |
| 23 | + "preLaunchTask": "Run Build", |
| 24 | + "outFiles": [], |
| 25 | + "internalConsoleOptions": "openOnSessionStart" |
| 26 | + }, |
| 27 | + { |
| 28 | + "type": "node", |
| 29 | + "request": "launch", |
| 30 | + "name": "Run workload tests", |
| 31 | + "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", |
| 32 | + "args": ["${workspaceRoot}/spec/development/workload/*.js"], |
| 33 | + "cwd": "${workspaceRoot}", |
| 34 | + "preLaunchTask": "Run Build", |
| 35 | + "outFiles": [], |
| 36 | + "internalConsoleOptions": "openOnSessionStart" |
| 37 | + }, |
| 38 | + { |
| 39 | + "type": "node", |
| 40 | + "request": "launch", |
| 41 | + "name": "Run middleware tests", |
| 42 | + "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", |
| 43 | + "args": ["${workspaceRoot}/lib/spec/middleware/*.js"], |
| 44 | + "cwd": "${workspaceRoot}", |
| 45 | + "preLaunchTask": "Run Build", |
| 46 | + "outFiles": [], |
| 47 | + "internalConsoleOptions": "openOnSessionStart" |
| 48 | + }, |
| 49 | + { |
| 50 | + "type": "node", |
| 51 | + "request": "launch", |
| 52 | + "name": "Run Content tests", |
| 53 | + "program": "${workspaceRoot}/node_modules/mocha/bin/_mocha", |
| 54 | + "args": ["${workspaceRoot}/lib/spec/content/*.js"], |
| 55 | + "cwd": "${workspaceRoot}", |
| 56 | + "preLaunchTask": "Run Build", |
| 57 | + "outFiles": [], |
| 58 | + "internalConsoleOptions": "openOnSessionStart" |
| 59 | + } |
| 60 | + ] |
56 | 61 | } |
0 commit comments