(actual, expected, msg)
| 17 | const { subtle } = globalThis.crypto; |
| 18 | |
| 19 | function assertSameSet(actual, expected, msg) { |
| 20 | if (msg === undefined) { |
| 21 | assert.deepStrictEqual(actual, expected); |
| 22 | } else { |
| 23 | assert.deepStrictEqual(actual, expected, msg); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | { |
| 28 | const tests = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…