We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3db0ef6 commit aaf7754Copy full SHA for aaf7754
impit-node/test/basics.test.ts
@@ -458,7 +458,8 @@ describe.each([
458
});
459
460
describe('Redirects', () => {
461
- test('redirects work by default', async (t) => {
+ // Skipping because of issues with redirected Standby requests on Apify
462
+ test.skip('redirects work by default', async (t) => {
463
const response = await impit.fetch(
464
getHttpBinUrl('/absolute-redirect/1'),
465
);
@@ -481,7 +482,7 @@ describe.each([
481
482
t.expect(response.url).toBe(getHttpBinUrl('/absolute-redirect/1', true));
483
484
- test('limiting redirects', async (t) => {
485
+ test.skip('limiting redirects', async (t) => {
486
const impit = new Impit({
487
followRedirects: true,
488
maxRedirects: 1
0 commit comments