(oauth?: string)
| 79 | } |
| 80 | |
| 81 | export function createTableServerForTestOAuth(oauth?: string): TableServer { |
| 82 | return new TableTestServerFactory().createServer({ |
| 83 | metadataDBPath: metadataDbPath, |
| 84 | enableDebugLog: enableDebugLog, |
| 85 | debugLogFilePath: debugLogPath, |
| 86 | loose: false, |
| 87 | skipApiVersionCheck: true, |
| 88 | https: false, |
| 89 | oauth: oauth |
| 90 | }); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Provides the connection string to connect to the Azurite table server |
no test coverage detected
searching dependent graphs…