Skip to content

Commit

Permalink
test: skip units
Browse files Browse the repository at this point in the history
  • Loading branch information
waitingsong committed Jan 30, 2021
1 parent f61c969 commit 64bbfce
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/rxxfetch/test/26.redirect.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ import assert = require('power-assert')

const filename = basename(__filename)

describe(filename, function() {
// skip while https://github.com/postmanlabs/httpbin/issues/617

describe.skip(filename, function() {
this.retries(3)
beforeEach(resolve => setTimeout(resolve, DELAY))

Expand All @@ -26,7 +28,7 @@ describe(filename, function() {
keepRedirectCookies: true, // intercept redirect
} as RxRequestInit

describe.skip('Should handle 303 redirect correctly with keepRedirectCookies:true', () => {
describe('Should handle 303 redirect correctly with keepRedirectCookies:true', () => {
it('Should post() be redirected to get()', (resolve) => {
const url = HOST_STATUS + '/303'
const args = { ...initArgs }
Expand Down

0 comments on commit 64bbfce

Please sign in to comment.