()
| 40 | * @return {*} {TableServer} |
| 41 | */ |
| 42 | export function createTableServerForTest(): TableServer { |
| 43 | return new TableTestServerFactory().createServer({ |
| 44 | metadataDBPath: metadataDbPath, |
| 45 | enableDebugLog: enableDebugLog, |
| 46 | debugLogFilePath: debugLogPath, |
| 47 | loose: false, |
| 48 | skipApiVersionCheck: false, |
| 49 | https: false |
| 50 | }); |
| 51 | } |
| 52 | |
| 53 | export function createTableServerForTestHttps(): TableServer { |
| 54 | return new TableTestServerFactory().createServer({ |
no test coverage detected
searching dependent graphs…