(it, mapper, label, options, expected)
| 81 | } |
| 82 | |
| 83 | function mapsFile (it, mapper, label, options, expected) { |
| 84 | it(`maps ${label}`, async () => { |
| 85 | const actual = await mapper.mapFileToUrl(options) |
| 86 | expect(actual).to.deep.equal(expected) |
| 87 | }) |
| 88 | } |
| 89 | |
| 90 | const itMapsUrl = asserter(mapsUrl) |
| 91 | const itMapsFile = asserter(mapsFile) |
nothing calls this directly
no test coverage detected