(actual, expected)
| 129 | })); |
| 130 | |
| 131 | function assertStartsWith(actual, expected) { |
| 132 | const start = actual.toString().slice(0, expected.length); |
| 133 | assert.strictEqual(start, expected); |
| 134 | } |
| 135 | |
| 136 | function assertIncludes(actual, expected) { |
| 137 | assert.ok(actual.toString().indexOf(expected) !== -1, |
no test coverage detected
searching dependent graphs…