(obj: Record<string, Record<string, string>>)
| 130 | |
| 131 | describe('diffCatalogMaps', () => { |
| 132 | function mapOf(obj: Record<string, Record<string, string>>): CatalogMap { |
| 133 | return new Map(Object.entries(obj)); |
| 134 | } |
| 135 | |
| 136 | test('returns empty when catalogs are identical', () => { |
| 137 | const a = mapOf({ '': { react: '^19.0.0' } }); |
no outgoing calls
no test coverage detected
searching dependent graphs…