update signature for setCertificateVerifyProc in session spec

This commit is contained in:
Shelley Vohr 2018-05-29 10:54:27 -04:00
parent 6935addd38
commit 2660859434
No known key found for this signature in database
GPG key ID: F13993A75599653C
2 changed files with 5 additions and 5 deletions

View file

@ -133,16 +133,16 @@ describe('security warnings', () => {
w.loadURL(`http://127.0.0.1:8881/base-page-security.html`)
})
it('should warn about blinkFeatures', (done) => {
it('should warn about enableBlinkFeatures', (done) => {
w = new BrowserWindow({
show: false,
webPreferences: {
blinkFeatures: ['my-cool-feature'],
enableBlinkFeatures: ['my-cool-feature'],
nodeIntegration: false
}
})
w.webContents.once('console-message', (e, level, message) => {
assert(message.includes('blinkFeatures'), message)
assert(message.includes('enableBlinkFeatures'), message)
done()
})