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-05-17 22:14:54 +0300
committerDaniel Imms <2193314+Tyriar@users.noreply.github.com>2022-05-17 22:14:54 +0300
commitca4db53d718f07c8b9732b9a59322b6ecc574fe4 (patch)
tree723ca17abd6dc1406eb733ad8216767726f2facc /test
parent18cf3d01ed22f7b35895a9b3c531048c835d4489 (diff)
Skip shell integration smoke tests on mac as well
Part of #149757
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 b94b40045f7..a5f5842b4c6 100644
--- a/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts
+++ b/test/smoke/src/areas/terminal/terminal-shellIntegration.test.ts
@@ -26,7 +26,8 @@ export function setup() {
describe('Shell integration', function () {
// TODO: Fix on Linux, some distros use sh as the default shell in which case shell integration will fail
- (process.platform === 'win32' || process.platform === 'linux' ? describe.skip : describe)('Decorations', function () {
+ // TODO: Fix on macOS, not sure reason for failing https://github.com/microsoft/vscode/issues/149757
+ describe.skip('Decorations', function () {
describe('Should show default icons', function () {
it('Placeholder', async () => {
await terminal.createTerminal();