Skip to content

Commit 84096aa

Browse files
committed
fix: add deleteOrganization to e2e test api
1 parent 9e7f39c commit 84096aa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

site/e2e/api.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ export const createOrganization = async () => {
6363
return org;
6464
};
6565

66+
export const deleteOrganization = async (orgName: string) => {
67+
await API.deleteOrganization(orgName);
68+
};
69+
6670
export const createOrganizationWithName = async (name: string) => {
6771
const org = await API.createOrganization({
6872
name,

0 commit comments

Comments
 (0)