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