File test-extensions-skip.patch of Package code
These tests use extensions which are not in the vscode tree and so are not available in OSS builds
See also remove-marketplace-extensions.patch
--- vscode-1.90.2/extensions/vscode-api-tests/src/singlefolder-tests/debug.test.ts.orig 2024-06-18 22:06:05.000000000 +0200
+++ vscode-1.90.2/extensions/vscode-api-tests/src/singlefolder-tests/debug.test.ts 2024-07-02 19:45:51.356761500 +0200
@@ -12,7 +12,7 @@ suite('vscode API - debug', function ()
teardown(assertNoRpc);
- test('breakpoints are available before accessing debug extension API', async () => {
+ test.skip('breakpoints are available before accessing debug extension API', async () => {
const file = await createRandomFile(undefined, undefined, '.js');
const doc = await workspace.openTextDocument(file);
await window.showTextDocument(doc);
@@ -60,7 +60,7 @@ suite('vscode API - debug', function ()
assert.strictEqual(functionBreakpoint.functionName, 'func');
});
- test('start debugging', async function () {
+ test.skip('start debugging', async function () {
let stoppedEvents = 0;
let variablesReceived: () => void;
let initializedReceived: () => void;
--- vscode-1.90.2/extensions/configuration-editing/src/test/completion.test.ts.orig 2024-06-18 22:06:05.000000000 +0200
+++ vscode-1.90.2/extensions/configuration-editing/src/test/completion.test.ts 2024-07-02 20:55:18.897037100 +0200
@@ -293,7 +293,7 @@ suite('Completions in settings.json', ()
});
});
-suite('Completions in extensions.json', () => {
+suite.skip('Completions in extensions.json', () => {
const testFile = 'extensions.json';
test('change recommendation', async () => {
{