diff --git a/test/jwe/cookbook.test.mjs b/test/jwe/cookbook.test.mjs index 2e991224..f40844d7 100644 --- a/test/jwe/cookbook.test.mjs +++ b/test/jwe/cookbook.test.mjs @@ -936,7 +936,10 @@ Promise.all([ for (const vector of vectors) { let conditional; - if (('WEBCRYPTO' in process.env || 'CRYPTOKEY' in process.env) && vector.webcrypto === false) { + if ( + ('WEBCRYPTO' in process.env || 'CRYPTOKEY' in process.env) && + vector.webcrypto === false + ) { conditional = test.failing; } else { conditional = test; diff --git a/test/jws/cookbook.test.mjs b/test/jws/cookbook.test.mjs index a0a92f6a..5f73e656 100644 --- a/test/jws/cookbook.test.mjs +++ b/test/jws/cookbook.test.mjs @@ -513,7 +513,10 @@ Promise.all([ for (const vector of vectors) { let conditional; - if (('WEBCRYPTO' in process.env || 'CRYPTOKEY' in process.env) && vector.webcrypto === false) { + if ( + ('WEBCRYPTO' in process.env || 'CRYPTOKEY' in process.env) && + vector.webcrypto === false + ) { conditional = test.failing; } else { conditional = test;