(...args)
| 7 | const fixturesDir = path.join(__dirname, '..', 'fixtures'); |
| 8 | |
| 9 | function fixturesPath(...args) { |
| 10 | args.unshift(fixturesDir); |
| 11 | return Reflect.apply(path.join, this, args); |
| 12 | } |
| 13 | |
| 14 | function fixturesFileURL(...args) { |
| 15 | return pathToFileURL(Reflect.apply(fixturesPath, this, args)); |
no test coverage detected
searching dependent graphs…