This commit is contained in:
Benjamin Pasero 2022-04-08 19:12:34 +02:00
parent a10f1e7ba3
commit 9a8fa5f014
No known key found for this signature in database
GPG Key ID: E6380CC4C8219E65
3 changed files with 3 additions and 7 deletions

View File

@ -12,9 +12,7 @@ export function setup(logger: Logger) {
// Shared before/after handling
installAllHandlers(logger);
it('install and enable vscode-smoketest-check extension', async function () {
this.retries(3); // TODO@bpasero TODO@sandy081 https://github.com/microsoft/vscode/issues/146800
it.skip('install and enable vscode-smoketest-check extension', async function () { // TODO@bpasero TODO@sandy081 https://github.com/microsoft/vscode/issues/146800
const app = this.app as Application;
await app.workbench.extensions.openExtensionsViewlet();

View File

@ -13,9 +13,7 @@ export function setup(logger: Logger) {
// Shared before/after handling
installAllHandlers(logger);
it('starts with "DE" locale and verifies title and viewlets text is in German', async function () {
this.retries(3); // TODO@bpasero TODO@sandy081 https://github.com/microsoft/vscode/issues/146800
it.skip('starts with "DE" locale and verifies title and viewlets text is in German', async function () { // TODO@bpasero TODO@sandy081 https://github.com/microsoft/vscode/issues/146800
const app = this.app as Application;
await app.workbench.extensions.openExtensionsViewlet();
await app.workbench.extensions.installExtension('ms-ceintl.vscode-language-pack-de', false);

View File

@ -374,7 +374,7 @@ describe(`VSCode Smoke Tests (${opts.web ? 'Web' : opts.legacy ? 'Electron (lega
setupLanguagesTests(logger);
if (opts.web) { setupTerminalTests(logger); } // Tests require playwright driver (https://github.com/microsoft/vscode/issues/146811)
setupStatusbarTests(logger);
if (quality !== Quality.Dev) { setupExtensionTests(logger); }
if (quality !== Quality.Dev && !opts.remote) { setupExtensionTests(logger); } // https://github.com/microsoft/vscode/issues/146800
setupMultirootTests(logger);
if (!opts.web && !opts.remote && quality !== Quality.Dev) { setupLocalizationTests(logger); }
if (!opts.web && !opts.remote) { setupLaunchTests(logger); }