| 20 | chai.use(chaiAsPromised); |
| 21 | |
| 22 | export interface TestRunConfig { |
| 23 | template_content: string; |
| 24 | target_content: string; |
| 25 | wait_cache: boolean; |
| 26 | skip_template_modify: boolean; |
| 27 | skip_target_modify: boolean; |
| 28 | } |
| 29 | |
| 30 | export default class TestTemplaterPlugin extends Plugin { |
| 31 | tests: Array<{ name: string; fn: () => Promise<void> }>; |
nothing calls this directly
no outgoing calls
no test coverage detected