Merge pull request #90245 from microsoft/tyriar/browser_tests

Move terminal unit tests to browser and common
This commit is contained in:
Daniel Imms 2020-02-10 04:58:40 -08:00 committed by GitHub
commit 5cfae257fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 3 additions and 2 deletions

View file

@ -627,7 +627,7 @@
},
{
"target": "{**/**.test.ts,**/test/**}",
"restrictions": "{**/vs/**,assert,sinon,crypto}"
"restrictions": "{**/vs/**,assert,sinon,crypto,xterm*}"
},
{
"target": "**/{common,browser,workbench}/**",

View file

@ -53,7 +53,8 @@
paths: {
'vs': new URL(`../../../${!!isBuild ? 'out-build' : 'out'}/vs`, baseUrl).href,
assert: new URL('../assert.js', baseUrl).href,
sinon: new URL('../../../node_modules/sinon/pkg/sinon-1.17.7.js', baseUrl).href
sinon: new URL('../../../node_modules/sinon/pkg/sinon-1.17.7.js', baseUrl).href,
xterm: new URL('../../../node_modules/xterm/lib/xterm.js', baseUrl).href
}
});
</script>