http://gothub.nowhevi57f4lxxd6db43miewcsgtovakbh6v5f52ci7csc2yjzy5rnid.onion/microsoft/vscode/blob/main/.vscode-test.js
21 * 22 * @type {Array<Partial<import("@vscode/test-cli").TestConfiguration> & { label: string }>} 23 */ 24 const extensions = [ 25 { 26 label : 'markdown-language-features' , 27 workspaceFolder : ` extensions/markdown-language-features/test-workspace ` , 28 mocha : { timeout : 60_000 } 29 } , 30 { 31 label : 'ipynb' , 32 workspaceFolder : path . join ( os . tmpdir ( ) , ` ipynb- ${ Math . floor ( Math . random ( ) * 100000 ) } ` ) , 33 mocha : { timeout : 60_000 } 34 } , 35 { 36 label :...