Delete duplicate test

This checks the same thing as the test before it.
This commit is contained in:
Elena Tanasoiu
2022-10-10 23:03:26 +01:00
parent 1a7ddcf843
commit c400485a4e

View File

@@ -143,16 +143,6 @@ describe('Variant Analysis Manager', async function() {
expect(getVariantAnalysisRepoResultStub.calledOnce).to.be.true;
});
it('should save the result to disk', async () => {
await variantAnalysisManager.autoDownloadVariantAnalysisResult(
scannedRepos[0],
variantAnalysis,
cancellationTokenSource.token
);
expect(getVariantAnalysisRepoResultStub.calledOnce).to.be.true;
});
});
});
});