fix: update node ref to fix patch handling unhandled rejections (#14603)

Fixes #14573
This commit is contained in:
Samuel Attard 2018-09-13 16:32:49 +10:00 committed by GitHub
parent d9c6dd0254
commit a55fd16349
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

2
DEPS
View file

@ -4,7 +4,7 @@ vars = {
'libchromiumcontent_revision':
'5db6529f9663a48ee3e6f4265a6abe7806f1dfbf',
'node_version':
'95bb1b1046a648994dfe85340aca21fee0179855',
'9dcbed23f016d3ad081be6ec7fb5122e57862da7',
'chromium_git':
'https://chromium.googlesource.com',

View file

@ -399,9 +399,7 @@ describe('remote module', () => {
})
})
// FIXME(alexeykuzmin): [Ch67] Enable the test back.
// It looks like the "unhandledrejection" handler is no longer called.
xit('emits unhandled rejection events in the renderer process', (done) => {
it('emits unhandled rejection events in the renderer process', (done) => {
window.addEventListener('unhandledrejection', function (event) {
event.preventDefault()
assert.equal(event.reason.message, 'rejected')