Skip to content

Commit cec6123

Browse files
committed
Do not skip API client unit tests
1 parent 0d86e28 commit cec6123

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const controllerRepoId = variantAnalysisJson_response.body.controller_repo.id;
2020
const variantAnalysisId = variantAnalysisJson_response.body.id;
2121
const repoTaskId = variantAnalysisRepoJson_response.body.repository.id;
2222

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

@@ -34,7 +34,7 @@ describe.skip("submitVariantAnalysis", () => {
3434
});
3535
});
3636

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

@@ -49,7 +49,7 @@ describe.skip("getVariantAnalysis", () => {
4949
});
5050
});
5151

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

@@ -65,7 +65,7 @@ describe.skip("getVariantAnalysisRepo", () => {
6565
});
6666
});
6767

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

0 commit comments

Comments
 (0)