From: Kevin Sawicki Date: Tue, 6 Dec 2016 17:22:29 +0000 (-0800) Subject: Add missing r in variable name X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c2f516067f61a051edab85540b763e3b5668cf0c;p=platform%2Fframework%2Fweb%2Fcrosswalk-tizen.git Add missing r in variable name --- diff --git a/spec/api-browser-window-spec.js b/spec/api-browser-window-spec.js index ea4d48e..e161cc0 100644 --- a/spec/api-browser-window-spec.js +++ b/spec/api-browser-window-spec.js @@ -1503,7 +1503,7 @@ describe('browser-window module', function () { describe('dev tool extensions', function () { describe('BrowserWindow.addDevToolsExtension', function () { - let showPanelIntevalId + let showPanelIntervalId beforeEach(function () { BrowserWindow.removeDevToolsExtension('foo') @@ -1514,7 +1514,7 @@ describe('browser-window module', function () { assert.equal(BrowserWindow.getDevToolsExtensions().hasOwnProperty('foo'), true) w.webContents.on('devtools-opened', function () { - showPanelIntevalId = setInterval(function () { + showPanelIntervalId = setInterval(function () { if (w && w.devToolsWebContents) { var showLastPanel = function () { var lastPanelId = WebInspector.inspectorView._tabbedPane._tabs.peekLast().id @@ -1522,7 +1522,7 @@ describe('browser-window module', function () { } w.devToolsWebContents.executeJavaScript(`(${showLastPanel})()`) } else { - clearInterval(showPanelIntevalId) + clearInterval(showPanelIntervalId) } }, 100) }) @@ -1531,7 +1531,7 @@ describe('browser-window module', function () { }) afterEach(function () { - clearInterval(showPanelIntevalId) + clearInterval(showPanelIntervalId) }) it('throws errors for missing manifest.json files', function () {