Add account deletion cleanup route

This commit is contained in:
2026-05-09 06:50:22 -04:00
parent a8d2688020
commit 91821a0fc9
7 changed files with 724 additions and 1 deletions
+4
View File
@@ -319,6 +319,10 @@ function testEnv(options: TestEnvOptions = {}): Env {
options.kvReads?.push(key);
return Promise.resolve(values.get(key) ?? null);
},
delete(key: string): Promise<void> {
values.delete(key);
return Promise.resolve();
},
},
ELY_STORAGE: testR2Bucket(),
ELY_RATE_LIMITER: {