(name: string, content: string)
| 3 | import type { PartialAppConfiguration } from './types'; |
| 4 | |
| 5 | function configFile(name: string, content: string): ConfigFileLike { |
| 6 | return { |
| 7 | name, |
| 8 | text: vi.fn().mockResolvedValue(content), |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | describe('config file import helpers', () => { |
| 13 | it('applies valid configuration files and logs the source filename', async () => { |