Exit with error on unhandled rejections in Node tests (#1251)

This commit is contained in:
larabr 2021-02-26 12:46:41 +01:00 committed by GitHub
parent 2000388a80
commit 15ee659c9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 7 deletions

View File

@ -3108,17 +3108,17 @@ module.exports = () => describe('Key', function() {
const source = await openpgp.readKey({ armoredKey: priv_key_rsa });
const [dest] = await openpgp.readKeys({ armoredKeys: twoKeys });
expect(dest.isPublic()).to.be.true;
return dest.update(source).then(() => {
return dest.update(source).then(async () => {
expect(dest.isPrivate()).to.be.true;
return Promise.all([
dest.verifyPrimaryKey().then(result => {
expect(source.verifyPrimaryKey()).to.eventually.equal(result);
dest.verifyPrimaryKey().then(async result => {
await expect(source.verifyPrimaryKey()).to.eventually.equal(result);
}),
dest.users[0].verify(dest.primaryKey).then(result => {
expect(source.users[0].verify(source.primaryKey)).to.eventually.equal(result);
dest.users[0].verify(dest.primaryKey).then(async result => {
await expect(source.users[0].verify(source.primaryKey)).to.eventually.equal(result);
}),
dest.subKeys[0].verify(dest.primaryKey).then(result => {
expect(source.subKeys[0].verify(source.primaryKey)).to.eventually.equal(result);
dest.subKeys[0].verify(dest.primaryKey).then(async result => {
await expect(source.subKeys[0].verify(source.primaryKey)).to.eventually.deep.equal(result);
})
]);
});

View File

@ -40,6 +40,11 @@ describe('Unit Tests', function () {
} catch (e) {}
}
});
} else {
process.on('unhandledRejection', error => {
console.error(error); // eslint-disable-line no-console
process.exit(1); // eslint-disable-line no-process-exit
});
}
require('./crypto')();