mirror of https://github.com/coder/code-server.git
fixup! feat: collect codecov integration tests
This commit is contained in:
parent
1243d19c86
commit
f339d0d47a
|
@ -236,7 +236,7 @@ describe("listen", () => {
|
||||||
jest.clearAllMocks()
|
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 errorMessage = "EISDIR: illegal operation on a directory, unlink"
|
||||||
const port = await getAvailablePort()
|
const port = await getAvailablePort()
|
||||||
const mockArgs = { port, host: "0.0.0.0", socket: tmpDirPath }
|
const mockArgs = { port, host: "0.0.0.0", socket: tmpDirPath }
|
||||||
|
|
|
@ -6,7 +6,7 @@ import * as integration from "../../../utils/integration"
|
||||||
|
|
||||||
// TODO@jsjoeio - move these to integration tests since they rely on Code
|
// TODO@jsjoeio - move these to integration tests since they rely on Code
|
||||||
// to be built
|
// to be built
|
||||||
describe.skip("vscode", () => {
|
describe("vscode", () => {
|
||||||
let codeServer: httpserver.HttpServer | undefined
|
let codeServer: httpserver.HttpServer | undefined
|
||||||
|
|
||||||
const testName = "vscode"
|
const testName = "vscode"
|
||||||
|
|
Loading…
Reference in New Issue