Use template strings
This commit is contained in:
parent
2713580d09
commit
d7b1792503
1 changed files with 2 additions and 2 deletions
|
@ -192,10 +192,10 @@ describe('chromium feature', function () {
|
||||||
window.addEventListener('message', listener)
|
window.addEventListener('message', listener)
|
||||||
|
|
||||||
var windowUrl = require('url').format({
|
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',
|
protocol: 'file',
|
||||||
query: {
|
query: {
|
||||||
p: fixtures + "/pages/window-opener-node.html"
|
p: `${fixtures}/pages/window-opener-node.html`
|
||||||
},
|
},
|
||||||
slashes: true
|
slashes: true
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue