refactor: replace var with const / let (#14866)

This commit is contained in:
Milan Burda 2018-09-29 01:17:00 +02:00 committed by Samuel Attard
parent b42493e6e6
commit c61db523c7
26 changed files with 195 additions and 201 deletions

View file

@ -14,8 +14,8 @@ chai.use(dirtyChai)
/* eslint-disable standard/no-callback-literal */
describe('webFrame module', function () {
var fixtures = path.resolve(__dirname, 'fixtures')
var w = null
const fixtures = path.resolve(__dirname, 'fixtures')
let w = null
afterEach(function () {
return closeWindow(w).then(function () { w = null })
@ -23,7 +23,7 @@ describe('webFrame module', function () {
describe('webFrame.registerURLSchemeAsPrivileged', function () {
it('supports fetch api by default', function (done) {
var url = 'file://' + fixtures + '/assets/logo.png'
const url = 'file://' + fixtures + '/assets/logo.png'
window.fetch(url).then(function (response) {
assert(response.ok)
done()
@ -102,7 +102,7 @@ describe('webFrame module', function () {
</html>`, done)
})
var runNumber = 1
let runNumber = 1
function allowsCORSRequests (expected, content, done) {
const standardScheme = remote.getGlobal('standardScheme') + runNumber
const corsScheme = 'cors' + runNumber