| 18 | } |
| 19 | } |
| 20 | class TestSaver implements ITableBundleSaver { |
| 21 | save(array: Uint8Array, path: string): void { |
| 22 | return fs.writeFileSync(path, array); |
| 23 | } |
| 24 | |
| 25 | } |
| 26 | const generateOption = (): ITableBundleInitOptions => { |
| 27 | const options: ITableBundleInitOptions = { |
| 28 | loader: new TestLoader(), |
nothing calls this directly
no outgoing calls
no test coverage detected