(config: UserConfig)
| 13 | } |
| 14 | |
| 15 | const createConfigResult = (config: UserConfig) => { |
| 16 | const conf = { ...common, config: { ...config, include: [] } } |
| 17 | |
| 18 | const serialized = stringifyJson(conf.config) |
| 19 | const deserialize = () => parseJson(serialized) |
| 20 | |
| 21 | return { ...conf, serialized, deserialize } as LoadConfigResult |
| 22 | } |
| 23 | |
| 24 | describe('DiffEngine affecteds', () => { |
| 25 | test('add theme.tokens', () => { |
no test coverage detected