mirror of
https://github.com/cdr/code-server.git
synced 2026-05-09 04:50:49 +02:00
parent
3999279b73
commit
fc54c4451c
2 changed files with 15 additions and 1 deletions
|
|
@ -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("vscode", () => {
|
describe.skip("vscode", () => {
|
||||||
let codeServer: httpserver.HttpServer | undefined
|
let codeServer: httpserver.HttpServer | undefined
|
||||||
|
|
||||||
const testName = "vscode"
|
const testName = "vscode"
|
||||||
|
|
|
||||||
14
test/unit/node/wrapper.test.ts
Normal file
14
test/unit/node/wrapper.test.ts
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
import { ChildProcess, ParentProcess, isChild } from "../../../src/node/wrapper"
|
||||||
|
|
||||||
|
describe("wrapper", () => {
|
||||||
|
describe("isChild", () => {
|
||||||
|
it("should return false for parent process", () => {
|
||||||
|
const p = new ParentProcess("1")
|
||||||
|
expect(isChild(p)).toBe(false)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
it("should return false for parent process", () => {
|
||||||
|
const childProc = new ChildProcess(1)
|
||||||
|
expect(isChild(childProc)).toBe(true)
|
||||||
|
})
|
||||||
|
})
|
||||||
Loading…
Reference in a new issue