Use template strings

This commit is contained in:
Kevin Sawicki 2016-03-23 17:40:25 -07:00
parent 2713580d09
commit d7b1792503

View file

@ -192,10 +192,10 @@ describe('chromium feature', function () {
window.addEventListener('message', listener)
var windowUrl = require('url').format({
pathname: fixtures + "/pages/window-opener-no-node-integration.html",
pathname: `${fixtures}/pages/window-opener-no-node-integration.html`,
protocol: 'file',
query: {
p: fixtures + "/pages/window-opener-node.html"
p: `${fixtures}/pages/window-opener-node.html`
},
slashes: true
})