remove a import unit test (#12358)

This commit is contained in:
Alan Ren
2020-09-16 13:32:37 -07:00
committed by GitHub
parent ed65a5124e
commit 58252bcf97

View File

@@ -1,21 +0,0 @@
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import MainController from '../../controllers/mainController';
import { ImportTestUtils, TestExtensionContext } from '../utils.test';
describe('Main Controller', function () {
let testExtensionContext: TestExtensionContext;
beforeEach(async function () {
testExtensionContext = await ImportTestUtils.getTestExtensionContext();
});
it('Extension activates successfully', async function () {
let mainController = new MainController(testExtensionContext);
await mainController.activate().should.not.be.rejected();
});
});