Make __filename normalized

This can make sure __filename and __dirname on Windows use "\" as path
delimeter.
This commit is contained in:
Cheng Zhao 2014-10-14 19:45:57 +08:00
parent dba2fa31b6
commit 8c29ffd084
2 changed files with 3 additions and 3 deletions

View file

@ -35,7 +35,7 @@ if window.location.protocol in ['file:', 'asar:']
window.location.pathname.substr 1
else
window.location.pathname
global.__filename = decodeURIComponent pathname
global.__filename = path.normalize decodeURIComponent(pathname)
global.__dirname = path.dirname global.__filename
# Set module's filename so relative require can work as expected.

View file

@ -19,8 +19,8 @@ describe 'ipc module', ->
assert.equal a.id, 1127
it 'should search module from the user app', ->
assert.equal remote.process.mainModule.filename, path.resolve(__dirname, 'static', 'main.js')
assert.equal remote.process.mainModule.paths[0], path.resolve(__dirname, 'static', 'node_modules')
assert.equal path.normalize(remote.process.mainModule.filename), path.resolve(__dirname, 'static', 'main.js')
assert.equal path.normalize(remote.process.mainModule.paths[0]), path.resolve(__dirname, 'static', 'node_modules')
describe 'remote.createFunctionWithReturnValue', ->
it 'should be called in browser synchronously', ->