From 8ae04c456ddeaa5f77b43e9ad78e69806a36fb50 Mon Sep 17 00:00:00 2001 From: Aditya Bist Date: Thu, 12 Aug 2021 14:48:10 -0700 Subject: [PATCH] re enable keytar test to check Ad Hoc build (#16758) --- src/vs/base/test/node/keytar.test.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/vs/base/test/node/keytar.test.ts b/src/vs/base/test/node/keytar.test.ts index 0ec64a7e1a..a70ecb0de2 100644 --- a/src/vs/base/test/node/keytar.test.ts +++ b/src/vs/base/test/node/keytar.test.ts @@ -4,12 +4,10 @@ *--------------------------------------------------------------------------------------------*/ import * as assert from 'assert'; -// import { isLinux } from 'vs/base/common/platform'; // {{SQL CARBON EDIT}} - disable test while failure is investigated +import { isLinux } from 'vs/base/common/platform'; // {{SQL CARBON EDIT}} - disable test while failure is investigated suite('Keytar', () => { - // {{SQL CARBON EDIT}} - disable test while failure is investigated - (test.skip)('loads and is functional', async () => { // TODO@RMacfarlane test seems to fail on Linux (Error: Unknown or unsupported transport 'disabled' for address 'disabled:') - //(isLinux ? test.skip : test)('loads and is functional', async () => { // TODO@RMacfarlane test seems to fail on Linux (Error: Unknown or unsupported transport 'disabled' for address 'disabled:') + (isLinux ? test.skip : test)('loads and is functional', async () => { // TODO@RMacfarlane test seems to fail on Linux (Error: Unknown or unsupported transport 'disabled' for address 'disabled:') const keytar = await import('keytar'); const name = `VSCode Test ${Math.floor(Math.random() * 1e9)}`; try {