Remove accidental .only in test suite

This commit is contained in:
Daniel Huigens 2020-01-24 17:59:35 +01:00
parent 9bdeaa927a
commit 382c05df6f

View File

@ -2615,7 +2615,7 @@ describe('Key', function() {
await expect(key.validate()).to.be.rejectedWith('Missing private key parameters'); await expect(key.validate()).to.be.rejectedWith('Missing private key parameters');
}); });
it.only('clearPrivateParams() - check that private key parameters were zeroed out', async function() { it('clearPrivateParams() - check that private key parameters were zeroed out', async function() {
const { keys: [key] } = await openpgp.key.readArmored(priv_key_rsa); const { keys: [key] } = await openpgp.key.readArmored(priv_key_rsa);
await key.decrypt('hello world'); await key.decrypt('hello world');
const params = key.primaryKey.params.slice(); const params = key.primaryKey.params.slice();