(raw: T)
| 17 | const pkg = require('../../package.json'); |
| 18 | |
| 19 | function configWithRaw<T extends DevContainerConfig | ImageMetadataEntry[]>(raw: T): SubstitutedConfig<T> { |
| 20 | return { |
| 21 | config: (Array.isArray(raw) ? raw.map(testSubstitute) : testSubstitute(raw)) as T, |
| 22 | raw, |
| 23 | substitute: testSubstitute, |
| 24 | }; |
| 25 | } |
| 26 | |
| 27 | describe('Image Metadata', function () { |
| 28 | this.timeout('180s'); |
no test coverage detected