Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel Imms <2193314+Tyriar@users.noreply.github.com>2022-06-16 06:29:32 +0300
committerDaniel Imms <2193314+Tyriar@users.noreply.github.com>2022-06-16 06:29:32 +0300
commitd4e06aaa2b49ca03d9d18b4408a106168a050d5c (patch)
treee374d4a80686388f23aa9e9b6179b6bb83167da3 /test
parentb77fecfa101022c3fa0478a62dd429fe1f04224d (diff)
Disable windows shell integration tests onlytyriar/150478_4
Diffstat (limited to 'test')
-rw-r--r--test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts b/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts
index 75fa3ca8a65..cfa5cefe7fd 100644
--- a/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts
+++ b/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts
@@ -32,7 +32,8 @@ export function setup() {
await terminal.runCommandWithValue(TerminalCommandIdWithValue.NewWithProfile, process.platform === 'win32' ? 'PowerShell' : 'bash');
}
- describe(`Shell integration ${i}`, function () {
+ // TODO: Some agents may not have pwsh installed?
+ (process.platform === 'win32' ? describe.skip : describe)(`Shell integration`, function () {
describe('Decorations', function () {
describe('Should show default icons', function () {