Clean up coverage for admin-tool-ext-win extension (#10806)

This commit is contained in:
Charles Gagnon
2020-06-09 12:56:03 -07:00
committed by GitHub
parent 1aab8aba34
commit 684aedfffa
5 changed files with 106 additions and 90 deletions

View File

@@ -0,0 +1,13 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import 'mocha';
import * as vscode from 'vscode';
describe('Extension activate test', () => {
it('Extension should activate correctly', async function (): Promise<void> {
await vscode.extensions.getExtension('Microsoft.admin-tool-ext-win').activate();
});
});