test: make netLog test pass when app crash on exit

This commit is contained in:
Cheng Zhao 2018-10-08 14:48:25 +09:00 коммит произвёл Jeremy Apthorp
Родитель a6256c672a
Коммит 7ba287a05e
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -108,7 +108,7 @@ describe('netLog module', () => {
}
})
appProcess.once('close', () => {
appProcess.once('exit', () => {
expect(fs.existsSync(dumpFile)).to.be.true()
done()
})
@ -130,7 +130,7 @@ describe('netLog module', () => {
}
})
appProcess.once('close', () => {
appProcess.once('exit', () => {
expect(fs.existsSync(dumpFile)).to.be.true()
expect(fs.existsSync(dumpFileDynamic)).to.be.true()
done()