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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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');
});
});
});