Add API for custom handling of deprecations
This commit is contained in:
parent
175449f096
commit
ccef805e9b
5 changed files with 58 additions and 1 deletions
27
spec/api-deprecations-spec.js
Normal file
27
spec/api-deprecations-spec.js
Normal file
|
@ -0,0 +1,27 @@
|
|||
const assert = require('assert');
|
||||
const deprecations = require('electron').deprecations;
|
||||
|
||||
describe('deprecations', function() {
|
||||
beforeEach(function() {
|
||||
deprecations.setHandler(null);
|
||||
process.throwDeprecation = true;
|
||||
});
|
||||
|
||||
it('allows a deprecation handler function to be specified', function() {
|
||||
var messages = [];
|
||||
|
||||
deprecations.setHandler(function (message) {
|
||||
messages.push(message)
|
||||
});
|
||||
|
||||
require('electron').webFrame.registerUrlSchemeAsSecure('some-scheme')
|
||||
|
||||
assert.deepEqual(messages, ['registerUrlSchemeAsSecure is deprecated. Use registerURLSchemeAsSecure instead.']);
|
||||
});
|
||||
|
||||
it('throws an exception if no deprecation handler is specified', function() {
|
||||
assert.throws(function() {
|
||||
require('electron').webFrame.registerUrlSchemeAsPrivileged('some-scheme')
|
||||
}, "registerUrlSchemeAsPrivileged is deprecated. Use registerURLSchemeAsPrivileged instead.");
|
||||
});
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue