From f339d0d47a00d98709c853fb55359db12b8fb8ca Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 19 Sep 2022 12:52:02 -0700 Subject: [PATCH] fixup! feat: collect codecov integration tests --- test/unit/node/app.test.ts | 2 +- test/unit/node/routes/vscode.test.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/node/app.test.ts b/test/unit/node/app.test.ts index 36c004e46..a8b1dbd3a 100644 --- a/test/unit/node/app.test.ts +++ b/test/unit/node/app.test.ts @@ -236,7 +236,7 @@ describe("listen", () => { jest.clearAllMocks() }) - it.skip("should throw an error if a directory is passed in instead of a file", async () => { + it("should throw an error if a directory is passed in instead of a file", async () => { const errorMessage = "EISDIR: illegal operation on a directory, unlink" const port = await getAvailablePort() const mockArgs = { port, host: "0.0.0.0", socket: tmpDirPath } diff --git a/test/unit/node/routes/vscode.test.ts b/test/unit/node/routes/vscode.test.ts index 5d3dbb63d..105d732eb 100644 --- a/test/unit/node/routes/vscode.test.ts +++ b/test/unit/node/routes/vscode.test.ts @@ -6,7 +6,7 @@ import * as integration from "../../../utils/integration" // TODO@jsjoeio - move these to integration tests since they rely on Code // to be built -describe.skip("vscode", () => { +describe("vscode", () => { let codeServer: httpserver.HttpServer | undefined const testName = "vscode"