mirror of
https://github.com/danbulant/jose
synced 2026-05-19 04:18:52 +00:00
style: lint cookbooks
This commit is contained in:
parent
f56fbfd630
commit
c037e5907c
2 changed files with 8 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue