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"