Skip to content

Commit

Permalink
test: replace forEach to for at test-webcrypto-sign-verify-ecdsa.js
Browse files Browse the repository at this point in the history
  • Loading branch information
StiffWriter00 committed Nov 18, 2023
1 parent a628dda commit e853993
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-webcrypto-sign-verify-ecdsa.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,11 @@ async function testSign({ name,
(async function() {
const variations = [];

vectors.forEach((vector) => {
for (let i = 0; i < vectors.length; ++i) {
const vector = vectors[i];
variations.push(testVerify(vector));
variations.push(testSign(vector));
});
}

await Promise.all(variations);
})().then(common.mustCall());

0 comments on commit e853993

Please sign in to comment.