Archived
1
0

wip: refactor vscode integration tests

This commit is contained in:
Joe Previte
2022-09-17 20:20:01 -07:00
parent 64d234e084
commit 13286bf4c9
2 changed files with 24 additions and 5 deletions

View File

@ -1,11 +1,10 @@
import { promises as fs } from "fs"
import * as path from "path"
import { clean, tmpdir } from "../../../utils/helpers"
import * as httpserver from "../../../utils/httpserver"
import * as integration from "../../../utils/integration"
import { clean, tmpdir } from "../utils/helpers"
import * as httpserver from "../utils/httpserver"
import * as integration from "../utils/integration"
// TODO@jsjoeio - move these to integration tests since they rely on Code
// to be built
// TODO@jsjoeio - remove skip when script fixed
describe.skip("vscode", () => {
let codeServer: httpserver.HttpServer | undefined