refactor: trim unused testing exports

This commit is contained in:
Peter Steinberger
2026-05-01 10:46:42 +01:00
parent 14ba8dc3f7
commit 4ed6a7c6b8
9 changed files with 1 additions and 77 deletions

View File

@@ -352,9 +352,3 @@ function enqueueBoundTurn<T>(key: string, run: () => Promise<T>): Promise<T> {
});
return next;
}
export const __testing = {
resetQueues() {
getGlobalState().queues.clear();
},
};

View File

@@ -253,9 +253,3 @@ function permissionsForMode(mode: PermissionsMode): {
? { approvalPolicy: "never", sandbox: "danger-full-access" }
: { approvalPolicy: "on-request", sandbox: "workspace-write" };
}
export const __testing = {
resetActiveTurns() {
getActiveTurns().clear();
},
};