Remove unstable import test (#11337)

* Remove unstable test

* removed the unstable test

* checking if activate does not throw error

* merged chagnes from master
This commit is contained in:
Aasim Khan
2020-07-16 10:13:28 -07:00
committed by GitHub
parent 8322e5dc83
commit 021c01e0b6

View File

@@ -11,11 +11,10 @@ describe('Main Controller', function () {
let testExtensionContext: TestExtensionContext; let testExtensionContext: TestExtensionContext;
beforeEach(async function () { beforeEach(async function () {
// creating a mock Extension Context with current extensionPath
testExtensionContext = await ImportTestUtils.getTestExtensionContext(); testExtensionContext = await ImportTestUtils.getTestExtensionContext();
}); });
it('Should register task flatFileImportStartCommand after activate is called', async function () { it('Extension activates successfully', async function () {
let mainController = new MainController(testExtensionContext); let mainController = new MainController(testExtensionContext);
should.doesNotThrow(() => mainController.activate()); should.doesNotThrow(() => mainController.activate());
}); });