Add failing spec for restoring noAsar value
This commit is contained in:
parent
02ce727ff6
commit
b186d752da
1 changed files with 8 additions and 0 deletions
|
@ -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)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue