()
| 9 | import { ROLE, USER } from './variables'; |
| 10 | |
| 11 | export function DisableTestCachingSetup() { |
| 12 | beforeEach(async () => { |
| 13 | process.env['TEST_NO_CACHE'] = 'true'; |
| 14 | }); |
| 15 | |
| 16 | afterAll(async () => { |
| 17 | delete process.env['TEST_NO_CACHE']; |
| 18 | }); |
| 19 | } |
| 20 | |
| 21 | export function ClearCaches() { |
| 22 | describe('Clear Caches', () => { |
no outgoing calls
no test coverage detected