Remove an outdated showErrorMessage assert from Jupyter Server Manager unit tests. (#4777)

This commit is contained in:
Cory Rivera
2019-03-29 15:18:01 -07:00
committed by GitHub
parent 6da66cf367
commit ddbd8033f9

View File

@@ -56,7 +56,6 @@ describe('Local Jupyter Server Manager', function (): void {
let error = 'Error!!';
deferredInstall.reject(error);
await testUtils.assertThrowsAsync(() => serverManager.startServer(), undefined);
mockApiWrapper.verify(a => a.showErrorMessage(TypeMoq.It.isAny()), TypeMoq.Times.once());
});
it('Should configure and start install', async function (): Promise<void> {