()
| 81 | } |
| 82 | |
| 83 | function saveManagedAccountMetadata(): void { |
| 84 | saveGlobalConfig(current => ({ |
| 85 | ...current, |
| 86 | oauthAccount: { |
| 87 | accountUuid: 'acct-1', |
| 88 | emailAddress: 'dev@noumena.com', |
| 89 | organizationUuid: 'org-123', |
| 90 | organizationName: 'Acme', |
| 91 | }, |
| 92 | })) |
| 93 | } |
| 94 | |
| 95 | beforeEach(async () => { |
| 96 | tempConfigDir = await mkdtemp(join(tmpdir(), 'ncode-bridge-create-auth-')) |
no test coverage detected