Archived
1
0

Move heart and AuthType out of http

This file is going to get blasted in favor of Express.
This commit is contained in:
Asher
2020-10-15 17:00:21 -05:00
parent dcb303a437
commit 2928d362fa
6 changed files with 59 additions and 55 deletions

View File

@ -3,12 +3,11 @@ import * as fs from "fs-extra"
import * as http from "http"
import * as path from "path"
import { LatestResponse, UpdateHttpProvider } from "../src/node/app/update"
import { AuthType } from "../src/node/http"
import { AuthType } from "../src/node/cli"
import { SettingsProvider, UpdateSettings } from "../src/node/settings"
import { tmpdir } from "../src/node/util"
describe("update", () => {
return
describe.skip("update", () => {
let version = "1.0.0"
let spy: string[] = []
const server = http.createServer((request: http.IncomingMessage, response: http.ServerResponse) => {