зеркало из https://github.com/electron/electron.git
Add failing spec for restoring noAsar value
This commit is contained in:
Родитель
02ce727ff6
Коммит
b186d752da
|
@ -744,6 +744,14 @@ describe('asar package', function () {
|
|||
fs.readdirSync(asar)
|
||||
}, /ENOTDIR/)
|
||||
})
|
||||
|
||||
it('is reset to its original value when execSync throws an error', function () {
|
||||
process.noAsar = false
|
||||
assert.throws(function () {
|
||||
ChildProcess.execSync(path.join(__dirname, 'does-not-exist.txt'))
|
||||
})
|
||||
assert.equal(process.noAsar, false)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче