Skip to content

Commit 26450e9

Browse files
Disable unit tests using MockGitHubApiServer
1 parent 8d74933 commit 26450e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extensions/ql-vscode/test/unit-tests/variant-analysis/gh-api/gh-api-client.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const controllerRepoId = variantAnalysisJson_response.body.controller_repo.id;
2121
const variantAnalysisId = variantAnalysisJson_response.body.id;
2222
const repoTaskId = variantAnalysisRepoJson_response.body.repository.id;
2323

24-
describe("submitVariantAnalysis", () => {
24+
describe.skip("submitVariantAnalysis", () => {
2525
it("returns the submitted variant analysis", async () => {
2626
await mockServer.loadScenario("mrva-problem-query-success");
2727

@@ -35,7 +35,7 @@ describe("submitVariantAnalysis", () => {
3535
});
3636
});
3737

38-
describe("getVariantAnalysis", () => {
38+
describe.skip("getVariantAnalysis", () => {
3939
it("returns the variant analysis", async () => {
4040
await mockServer.loadScenario("mrva-problem-query-success");
4141

@@ -50,7 +50,7 @@ describe("getVariantAnalysis", () => {
5050
});
5151
});
5252

53-
describe("getVariantAnalysisRepo", () => {
53+
describe.skip("getVariantAnalysisRepo", () => {
5454
it("returns the variant analysis repo task", async () => {
5555
await mockServer.loadScenario("mrva-problem-query-success");
5656

@@ -66,7 +66,7 @@ describe("getVariantAnalysisRepo", () => {
6666
});
6767
});
6868

69-
describe("getRepositoryFromNwo", () => {
69+
describe.skip("getRepositoryFromNwo", () => {
7070
it("returns the repository", async () => {
7171
await mockServer.loadScenario("mrva-problem-query-success");
7272

0 commit comments

Comments
 (0)