(key: string, value: string | undefined)
| 19 | const originalUserType = process.env.USER_TYPE |
| 20 | |
| 21 | function restoreEnvVar(key: string, value: string | undefined): void { |
| 22 | if (value === undefined) { |
| 23 | delete process.env[key] |
| 24 | } else { |
| 25 | process.env[key] = value |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | async function writeTeamFixture( |
| 30 | teamName = 'team-alpha', |
no outgoing calls
no test coverage detected