| 19 | } |
| 20 | |
| 21 | class Test2ConfigSource implements ConfigSource { |
| 22 | options: { |
| 23 | hello2?: string; |
| 24 | }; |
| 25 | |
| 26 | getAll() { |
| 27 | return Promise.resolve({ |
| 28 | value: "string-2", |
| 29 | ...this.options |
| 30 | }); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | describe("@tsed/config: basic usage", () => { |
| 35 | describe("without options", () => { |
nothing calls this directly
no outgoing calls
no test coverage detected