Add missing semicolons

This commit is contained in:
Kevin Sawicki 2016-03-16 09:35:18 -07:00
parent dfd13cf4ca
commit 1b6e01ce6d

View file

@ -763,21 +763,20 @@ describe('browser-window module', function() {
describe('deprecated options', function() { describe('deprecated options', function() {
it('throws a deprecation error for option keys using hyphens instead of camel case', function() { it('throws a deprecation error for option keys using hyphens instead of camel case', function() {
assert.throws(function () { assert.throws(function () {
new BrowserWindow({'min-width': 500}) new BrowserWindow({'min-width': 500});
}, 'min-width is deprecated. Use minWidth instead.'); }, 'min-width is deprecated. Use minWidth instead.');
}); });
it('throws a deprecation error for webPreference keys using hyphens instead of camel case', function() { it('throws a deprecation error for webPreference keys using hyphens instead of camel case', function() {
assert.throws(function () { assert.throws(function () {
new BrowserWindow({webPreferences: {'node-integration': false}}) new BrowserWindow({webPreferences: {'node-integration': false}});
}, 'node-integration is deprecated. Use nodeIntegration instead.'); }, 'node-integration is deprecated. Use nodeIntegration instead.');
}); });
it('throws a deprecation error for option keys that should be set on webPreferences', function() { it('throws a deprecation error for option keys that should be set on webPreferences', function() {
assert.throws(function () { assert.throws(function () {
new BrowserWindow({zoomFactor: 1}) new BrowserWindow({zoomFactor: 1});
}, 'Setting zoomFactor on options is deprecated. Set it on options.webPreferences instead.'); }, 'Setting zoomFactor on options is deprecated. Set it on options.webPreferences instead.');
}); });
}) });
}); });