Move terminal tests to common and browser

This commit is contained in:
Daniel Imms 2020-02-07 08:52:37 -08:00
parent 67dd7855f5
commit 8a4cd00f8f
6 changed files with 3 additions and 2 deletions

View file

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

View file

@ -47,7 +47,8 @@
paths: { paths: {
'vs': new URL('../../../out/vs', baseUrl).href, 'vs': new URL('../../../out/vs', baseUrl).href,
assert: new URL('../assert.js', 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> </script>