feat: add process.contextId used by @electron/remote (#28007)

This commit is contained in:
Milan Burda
2021-03-17 19:23:03 +01:00
committed by GitHub
parent 54bc21929a
commit 485fa5bea9
6 changed files with 25 additions and 1 deletions

View File

@@ -115,4 +115,10 @@ describe('process module', () => {
expect(success).to.be.false();
});
});
describe('process.contextId', () => {
it('is a string', () => {
expect(process.contextId).to.be.a('string');
});
});
});