File tree Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Expand file tree Collapse file tree 2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 47
47
}
48
48
],
49
49
"engines" : {
50
- "vscode" : " ^1.83 .0"
50
+ "vscode" : " ^1.91 .0"
51
51
},
52
52
"enabledApiProposals" : [
53
53
" fileSearchProvider" ,
1764
1764
"test" : " node ./out/test/runTest.js" ,
1765
1765
"lint" : " eslint src/**" ,
1766
1766
"lint-fix" : " eslint --fix src/**" ,
1767
- "download-api" : " dts dev 1.83 .0" ,
1767
+ "download-api" : " dts dev 1.91 .0" ,
1768
1768
"postinstall" : " npm run download-api"
1769
1769
},
1770
1770
"devDependencies" : {
1773
1773
"@types/mocha" : " ^7.0.2" ,
1774
1774
"@types/node" : " ^14.18.0" ,
1775
1775
"@types/semver" : " 7.5.4" ,
1776
- "@types/vscode" : " 1.83 .0" ,
1776
+ "@types/vscode" : " 1.91 .0" ,
1777
1777
"@types/ws" : " 8.5.4" ,
1778
1778
"@types/xmldom" : " ^0.1.29" ,
1779
1779
"@typescript-eslint/eslint-plugin" : " ^4.32.0" ,
Original file line number Diff line number Diff line change @@ -891,13 +891,17 @@ async function runHandler(
891
891
}
892
892
}
893
893
// Start the debugging session
894
- startedDebugging = await vscode . debug . startDebugging ( undefined , {
895
- type : "objectscript" ,
896
- request : "attach" ,
897
- name : "Unit tests" ,
898
- cspDebugId : queueResp . result . content . debugId ,
899
- isUnitTest : true ,
900
- } ) ;
894
+ startedDebugging = await vscode . debug . startDebugging (
895
+ undefined ,
896
+ {
897
+ type : "objectscript" ,
898
+ request : "attach" ,
899
+ name : "Unit tests" ,
900
+ cspDebugId : queueResp . result . content . debugId ,
901
+ isUnitTest : true ,
902
+ } ,
903
+ { testRun }
904
+ ) ;
901
905
}
902
906
903
907
if ( pollResp . retryafter ) {
You can’t perform that action at this time.
0 commit comments