(orgName: string)
| 102 | }; |
| 103 | |
| 104 | export const deleteOrganization = async (orgName: string) => { |
| 105 | await API.deleteOrganization(orgName); |
| 106 | }; |
| 107 | |
| 108 | export const createOrganizationWithName = async (name: string) => { |
| 109 | const org = await API.createOrganization({ |
no test coverage detected