(actual, expected)
| 25 | } |
| 26 | |
| 27 | function assertJsonWebKey(actual, expected) { |
| 28 | const idlDictionary = asIdlDictionary(expected); |
| 29 | if (idlDictionary.oth !== undefined) |
| 30 | idlDictionary.oth = idlDictionary.oth.map(asIdlDictionary); |
| 31 | assert.deepStrictEqual(actual, idlDictionary); |
| 32 | } |
| 33 | |
| 34 | // Required arguments.length |
| 35 | { |
no test coverage detected
searching dependent graphs…