( configPath: string, config: Credentials, runtimeFlags: RuntimeFlags )
| 234 | } |
| 235 | |
| 236 | function writeCredentialsToKeyring( |
| 237 | configPath: string, |
| 238 | config: Credentials, |
| 239 | runtimeFlags: RuntimeFlags |
| 240 | ): void { |
| 241 | const entry = createKeyringEntry(configPath, runtimeFlags); |
| 242 | entry.setPassword(JSON.stringify(config)); |
| 243 | } |
| 244 | |
| 245 | function deleteCredentialsFromKeyring( |
| 246 | configPath: string, |
no test coverage detected