Unique identifiers per test so the module-level cache never bleeds across tests.
()
| 28 | let counter = 0 |
| 29 | /** Unique identifiers per test so the module-level cache never bleeds across tests. */ |
| 30 | function uniqueIds() { |
| 31 | counter += 1 |
| 32 | return { application: `app-${counter}`, environment: `env-${counter}`, profile: 'access-control' } |
| 33 | } |
| 34 | |
| 35 | describe('fetchAppConfigProfile', () => { |
| 36 | beforeEach(() => { |