(filename: string)
| 636 | expect(sources).toContain('./second.ts') |
| 637 | |
| 638 | function readFixture(filename: string) { |
| 639 | const url = new URL( |
| 640 | `./fixtures/bundled-with-sourcemaps/${filename}`, |
| 641 | import.meta.url, |
| 642 | ) |
| 643 | |
| 644 | return readFileSync(fileURLToPath(url), 'utf8') |
| 645 | } |
| 646 | }) |
| 647 | |
| 648 | test('sourcemap with multiple sources and nested paths', async () => { |