refactor: delete wrapper test

This commit is contained in:
Joe Previte 2022-12-20 10:55:12 -07:00
parent 4deb15673b
commit 3999279b73
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
2 changed files with 1 additions and 15 deletions

View File

@ -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"

View File

@ -1,14 +0,0 @@
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)
})
})