(actual, expected, message, operator, stackStartFunction)
| 13 | } |
| 14 | |
| 15 | function fail (actual, expected, message, operator, stackStartFunction) { |
| 16 | throw new AssertionError({ |
| 17 | message: message, |
| 18 | actual: actual, |
| 19 | expected: expected, |
| 20 | operator: operator, |
| 21 | stackStartFunction: stackStartFunction |
| 22 | }); |
| 23 | } |
| 24 | |
| 25 | // Utility for deep equality testing of objects |
| 26 | function objectsEqual (obj1, obj2) { |
no outgoing calls
no test coverage detected