(dev: boolean)
| 97 | * @return {*} {string} |
| 98 | */ |
| 99 | export function createConnectionStringForTest(dev: boolean): string { |
| 100 | if (dev) { |
| 101 | return connectionString; |
| 102 | } else { |
| 103 | return process.env[AZURE_TABLE_STORAGE]!; |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * provides the base URL of Azurite or the service to create SaS |
no outgoing calls
no test coverage detected
searching dependent graphs…