()
| 43 | |
| 44 | let cache = null; |
| 45 | function load() { |
| 46 | if (cache) return cache; |
| 47 | ensureGlobal(); |
| 48 | const global = loadGlobal(); |
| 49 | const local = loadLocal(); |
| 50 | cache = { ...defaultConfig, ...global, ...local }; |
| 51 | return cache; |
| 52 | } |
| 53 | |
| 54 | function assertTempValid(t: string) { |
| 55 | // should include {{diff}} |
no test coverage detected