feature: emit events

This commit is contained in:
Andy Burke 2025-07-01 19:14:18 -07:00
parent 0d0f399cc2
commit 3214d17b80
7 changed files with 460 additions and 18 deletions

View file

@ -49,5 +49,5 @@ export function random_phone_number(): string {
const DATA_DIR = lurid();
export function get_data_dir(): string {
return Deno.env.get('TEST_DATA_STORAGE_ROOT') ?? DATA_DIR;
return Deno.env.get('FSDB_TEST_DATA_STORAGE_ROOT') ?? DATA_DIR;
}