(label = 'test-account')
| 17 | const originalExperimental = getExperimental(); |
| 18 | |
| 19 | function addTestAccount(label = 'test-account') { |
| 20 | const account = addAccountByKey(`test-key-${Date.now()}-${Math.random().toString(36).slice(2)}`, label); |
| 21 | createdAccountIds.push(account.id); |
| 22 | return account; |
| 23 | } |
| 24 | |
| 25 | afterEach(() => { |
| 26 | setExperimental(originalExperimental); |
no test coverage detected