Remove settings duplicated in beforeEach

This commit is contained in:
Robert
2022-09-23 14:11:00 +01:00
parent 4d3385825b
commit 0e23dd59db

View File

@@ -273,8 +273,6 @@ describe('Remote queries', function() {
}); });
it('should run a variant analysis that is part of a qlpack', async () => { it('should run a variant analysis that is part of a qlpack', async () => {
await setVariantAnalysisLiveResultsEnabled(true);
const dummyVariantAnalysis: VariantAnalysis = { const dummyVariantAnalysis: VariantAnalysis = {
id: 123, id: 123,
controller_repo: { controller_repo: {
@@ -299,8 +297,6 @@ describe('Remote queries', function() {
}); });
it('should run a remote query that is not part of a qlpack', async () => { it('should run a remote query that is not part of a qlpack', async () => {
await setVariantAnalysisLiveResultsEnabled(true);
const dummyVariantAnalysis: VariantAnalysis = { const dummyVariantAnalysis: VariantAnalysis = {
id: 123, id: 123,
controller_repo: { controller_repo: {
@@ -325,8 +321,6 @@ describe('Remote queries', function() {
}); });
it('should run a remote query that is nested inside a qlpack', async () => { it('should run a remote query that is nested inside a qlpack', async () => {
await setVariantAnalysisLiveResultsEnabled(true);
const dummyVariantAnalysis: VariantAnalysis = { const dummyVariantAnalysis: VariantAnalysis = {
id: 123, id: 123,
controller_repo: { controller_repo: {
@@ -351,8 +345,6 @@ describe('Remote queries', function() {
}); });
it('should cancel a run before uploading', async () => { it('should cancel a run before uploading', async () => {
await setVariantAnalysisLiveResultsEnabled(true);
const fileUri = getFile('data-remote-no-qlpack/in-pack.ql'); const fileUri = getFile('data-remote-no-qlpack/in-pack.ql');
const promise = runRemoteQuery(cli, credentials, fileUri, true, progress, token); const promise = runRemoteQuery(cli, credentials, fileUri, true, progress, token);