@@ -128,7 +128,7 @@ describe('basics', () => {
128
128
} )
129
129
} )
130
130
131
- it . skip ( 'does basic get request with redirects' , async done => {
131
+ it ( 'does basic get request with redirects' , async done => {
132
132
let res : httpm . HttpClientResponse = await _http . get (
133
133
'https://httpbin.org/redirect-to?url=' +
134
134
encodeURIComponent ( 'https://httpbin.org/get' )
@@ -140,7 +140,7 @@ describe('basics', () => {
140
140
done ( )
141
141
} )
142
142
143
- it . skip ( 'does basic get request with redirects (303)' , async done => {
143
+ it ( 'does basic get request with redirects (303)' , async done => {
144
144
let res : httpm . HttpClientResponse = await _http . get (
145
145
'https://httpbin.org/redirect-to?url=' +
146
146
encodeURIComponent ( 'https://httpbin.org/get' ) +
@@ -164,7 +164,7 @@ describe('basics', () => {
164
164
done ( )
165
165
} )
166
166
167
- it . skip ( 'does not follow redirects if disabled' , async done => {
167
+ it ( 'does not follow redirects if disabled' , async done => {
168
168
let http : httpm . HttpClient = new httpm . HttpClient (
169
169
'typed-test-client-tests' ,
170
170
null ,
@@ -179,7 +179,7 @@ describe('basics', () => {
179
179
done ( )
180
180
} )
181
181
182
- it . skip ( 'does not pass auth with diff hostname redirects' , async done => {
182
+ it ( 'does not pass auth with diff hostname redirects' , async done => {
183
183
let headers = {
184
184
accept : 'application/json' ,
185
185
authorization : 'shhh'
@@ -202,7 +202,7 @@ describe('basics', () => {
202
202
done ( )
203
203
} )
204
204
205
- it . skip ( 'does not pass Auth with diff hostname redirects' , async done => {
205
+ it ( 'does not pass Auth with diff hostname redirects' , async done => {
206
206
let headers = {
207
207
Accept : 'application/json' ,
208
208
Authorization : 'shhh'
0 commit comments