From 1e2dbce1ec9ad678108f2ce16f19f3a257042c1b Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Fri, 5 Jul 2024 21:06:24 +0000 Subject: [PATCH] Lint add missing semicolon to assertion. --- test/assertions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/assertions.js b/test/assertions.js index 6e1f555..261cd19 100644 --- a/test/assertions.js +++ b/test/assertions.js @@ -246,7 +246,7 @@ export function testJWK({curve}) { curve }); const jwk1 = await EcdsaMultikey.toJwk({keyPair}); - expect(jwk1.d).to.not.exist + expect(jwk1.d).to.not.exist; const keyPairImported = await EcdsaMultikey.fromJwk({jwk: jwk1}); const jwk2 = await EcdsaMultikey.toJwk({keyPair: keyPairImported}); expect(jwk1).to.eql(jwk2);