| 5 | import { assert, describe, it } from 'vitest' |
| 6 | |
| 7 | interface BundleInternals extends Bundle { |
| 8 | sources: Array<{ |
| 9 | content: MagicString |
| 10 | filename?: string |
| 11 | ignoreList?: boolean |
| 12 | indentExclusionRanges?: ExclusionRange | ExclusionRange[] |
| 13 | }> |
| 14 | } |
| 15 | |
| 16 | describe('bundle', () => { |
| 17 | describe('addSource', () => { |
nothing calls this directly
no outgoing calls
no test coverage detected