( context: ImpureGraphContext<false, true>, authentication: AuthenticationContext, shortNamePrefix: string, )
| 139 | }; |
| 140 | |
| 141 | export const createTestOrg = async ( |
| 142 | context: ImpureGraphContext<false, true>, |
| 143 | authentication: AuthenticationContext, |
| 144 | shortNamePrefix: string, |
| 145 | ) => { |
| 146 | const shortname = generateRandomShortname(shortNamePrefix); |
| 147 | |
| 148 | return createOrg(context, authentication, { |
| 149 | name: "Test org", |
| 150 | shortname, |
| 151 | }); |
| 152 | }; |
| 153 | |
| 154 | const afterHookTriggerTimeout = 5_000; |
| 155 |
no test coverage detected