File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- /.vscode /launch.json
2-
31/dist /
42/dts-out /
53
Original file line number Diff line number Diff line change 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 e2e test" ,
11+ "program" : " ${workspaceFolder}/node_modules/mocha/bin/_mocha" ,
12+ "args" : [
13+ " tests/e2e/test-cases/${input:testCaseName}/index.spec.js"
14+ ],
15+ "internalConsoleOptions" : " openOnSessionStart"
16+ },
17+ {
18+ "type" : " node" ,
19+ "request" : " attach" ,
20+ "name" : " Attach debugger" ,
21+ "skipFiles" : [
22+ " <node_internals>/**"
23+ ]
24+ },
25+ ],
26+ "inputs" : [
27+ {
28+ "type" : " promptString" ,
29+ "id" : " testCaseName" ,
30+ "description" : " Please enter a test case name (a folder name)"
31+ }
32+ ]
33+ }
You can’t perform that action at this time.
0 commit comments