Skip to content

Commit

Permalink
Add skipped test
Browse files Browse the repository at this point in the history
  • Loading branch information
rlidwka committed May 17, 2022
1 parent fa43646 commit 4dd99c9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/default.js
Expand Up @@ -90,5 +90,12 @@ describe('Default', function () {
})

it.skip('should fail on page > 100K', async () => {
const html = ' '.repeat(110000) + '<html><head><meta http-equiv="refresh" content="10; url=https://github.com/1 "></head><body></body></html>'
nock('http://example.org')
.get('/large')
.reply(200, html, { 'content-type': 'text/html' })

const result = await uu.expand('http://example.org/large')
assert.strictEqual(result, null)
})
})

0 comments on commit 4dd99c9

Please sign in to comment.