#139183 enable the test and add a log statement

This commit is contained in:
Sandeep Somavarapu 2021-12-16 14:32:31 +01:00
parent fa739870a2
commit 995d40b12d
No known key found for this signature in database
GPG key ID: 1FED25EC4646638B
2 changed files with 2 additions and 1 deletions

View file

@ -414,6 +414,7 @@ export abstract class AbstractExtensionManagementService extends Disposable impl
throw new ExtensionManagementError(nls.localize('notFoundCompatibleDependency', "Can't install '{0}' extension because it is not compatible with the current version of {1} (version {2}).", extension.identifier.id, this.productService.nameLong, this.productService.version), ExtensionManagementErrorCode.Incompatible);
}
this.logService.info('Getting Manifest...', compatibleExtension.identifier.id);
const manifest = await this.galleryService.getManifest(compatibleExtension, CancellationToken.None);
if (manifest === null) {
throw new ExtensionManagementError(`Missing manifest for extension ${extension.identifier.id}`, ExtensionManagementErrorCode.Invalid);

View file

@ -12,7 +12,7 @@ export function setup(logger: Logger) {
// Shared before/after handling
installAllHandlers(logger);
it.skip('install and enable vscode-smoketest-check extension', async function () {
it('install and enable vscode-smoketest-check extension', async function () {
const app = this.app as Application;
await app.workbench.extensions.openExtensionsViewlet();