mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
Refer to the upstream bug (#239)
The issue #168 is a protocol inconsistency which happens only in case of HTTPS error. This patch starts refering to the upstream bug instead of puppeteer issue. Closes #168.
This commit is contained in:
@@ -524,7 +524,7 @@ describe('Page', function() {
|
||||
}));
|
||||
it('should fail when navigating to bad SSL', SX(async function() {
|
||||
// Make sure that network events do not emit 'undefind'.
|
||||
// @see https://github.com/GoogleChrome/puppeteer/issues/168
|
||||
// @see https://crbug.com/750469
|
||||
page.on('request', request => expect(request).toBeTruthy());
|
||||
page.on('requestfinished', request => expect(request).toBeTruthy());
|
||||
page.on('requestfailed', request => expect(request).toBeTruthy());
|
||||
|
||||
Reference in New Issue
Block a user