code review
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
import * as httpm from '../_out';
|
||||
import * as path from 'path';
|
||||
import * as am from '../_out/auth';
|
||||
import * as httpm from '../';
|
||||
import * as am from '../auth';
|
||||
|
||||
describe('auth', () => {
|
||||
beforeEach(() => {
|
||||
|
||||
@@ -1,14 +1,11 @@
|
||||
import * as httpm from '../_out';
|
||||
import * as httpm from '../';
|
||||
import * as path from 'path';
|
||||
import * as am from '../_out/auth';
|
||||
import * as fs from 'fs';
|
||||
import { connect } from 'http2';
|
||||
|
||||
let sampleFilePath: string = path.join(__dirname, 'testoutput.txt');
|
||||
|
||||
describe('basics', () => {
|
||||
let _http: httpm.HttpClient;
|
||||
let _httpbin: httpm.HttpClient;
|
||||
|
||||
beforeEach(() => {
|
||||
_http = new httpm.HttpClient('http-client-tests');
|
||||
|
||||
@@ -1,13 +1,7 @@
|
||||
import * as httpm from '../_out';
|
||||
import * as path from 'path';
|
||||
import * as am from '../_out/auth';
|
||||
import * as fs from 'fs';
|
||||
|
||||
let sampleFilePath: string = path.join(__dirname, 'testoutput.txt');
|
||||
import * as httpm from '../';
|
||||
|
||||
describe('basics', () => {
|
||||
let _http: httpm.HttpClient;
|
||||
let _httpbin: httpm.HttpClient;
|
||||
|
||||
beforeEach(() => {
|
||||
_http = new httpm.HttpClient('http-client-tests', [], { keepAlive: true });
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import * as pm from '../_out/proxy';
|
||||
import * as pm from '../proxy';
|
||||
import * as url from 'url';
|
||||
|
||||
describe('proxy', () => {
|
||||
|
||||
Reference in New Issue
Block a user