Skip to content

Commit

Permalink
Disable unit tests using MockGitHubApiServer
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbrignull committed Sep 19, 2023
1 parent 8d74933 commit 26450e9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const controllerRepoId = variantAnalysisJson_response.body.controller_repo.id;
const variantAnalysisId = variantAnalysisJson_response.body.id;
const repoTaskId = variantAnalysisRepoJson_response.body.repository.id;

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

Expand All @@ -35,7 +35,7 @@ describe("submitVariantAnalysis", () => {
});
});

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

Expand All @@ -50,7 +50,7 @@ describe("getVariantAnalysis", () => {
});
});

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

Expand All @@ -66,7 +66,7 @@ describe("getVariantAnalysisRepo", () => {
});
});

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

Expand Down

0 comments on commit 26450e9

Please sign in to comment.