Revert unnecessary changes

This commit is contained in:
Josh Gross
2020-01-11 21:23:55 -05:00
parent 62b5d3a94f
commit 7f15359c45
7 changed files with 30 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
import * as httpm from '../';
import * as am from '../auth';
import * as httpm from '../_out';
import * as am from '../_out/auth';
describe('auth', () => {
beforeEach(() => {

View File

@@ -1,4 +1,4 @@
import * as httpm from '../';
import * as httpm from '../_out';
import * as path from 'path';
import * as fs from 'fs';

View File

@@ -1,4 +1,4 @@
import * as httpm from '../';
import * as httpm from '../_out';
describe('basics', () => {
let _http: httpm.HttpClient;

View File

@@ -1,4 +1,4 @@
import * as pm from '../proxy';
import * as pm from '../_out/proxy';
import * as url from 'url';
describe('proxy', () => {