Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Merge pull request #33 from dhadka/dhadka/disable-redirect-tests
Browse files Browse the repository at this point in the history
Disable redirect tests due to httpbin issue
  • Loading branch information
bryanmacfarlane committed Oct 12, 2020
2 parents 88fc9d9 + 91c9096 commit 544584c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions __tests__/basics.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ describe('basics', () => {
})
})

it('does basic get request with redirects', async done => {
it.skip('does basic get request with redirects', async done => {
let res: httpm.HttpClientResponse = await _http.get(
'https://httpbin.org/redirect-to?url=' +
encodeURIComponent('https://httpbin.org/get')
Expand All @@ -140,7 +140,7 @@ describe('basics', () => {
done()
})

it('does basic get request with redirects (303)', async done => {
it.skip('does basic get request with redirects (303)', async done => {
let res: httpm.HttpClientResponse = await _http.get(
'https://httpbin.org/redirect-to?url=' +
encodeURIComponent('https://httpbin.org/get') +
Expand All @@ -164,7 +164,7 @@ describe('basics', () => {
done()
})

it('does not follow redirects if disabled', async done => {
it.skip('does not follow redirects if disabled', async done => {
let http: httpm.HttpClient = new httpm.HttpClient(
'typed-test-client-tests',
null,
Expand All @@ -179,7 +179,7 @@ describe('basics', () => {
done()
})

it('does not pass auth with diff hostname redirects', async done => {
it.skip('does not pass auth with diff hostname redirects', async done => {
let headers = {
accept: 'application/json',
authorization: 'shhh'
Expand All @@ -202,7 +202,7 @@ describe('basics', () => {
done()
})

it('does not pass Auth with diff hostname redirects', async done => {
it.skip('does not pass Auth with diff hostname redirects', async done => {
let headers = {
Accept: 'application/json',
Authorization: 'shhh'
Expand Down

0 comments on commit 544584c

Please sign in to comment.