aboutsummaryrefslogtreecommitdiff
path: root/test/teardown.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/teardown.ts')
-rw-r--r--test/teardown.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/teardown.ts b/test/teardown.ts
index 290c478..c5b49e3 100644
--- a/test/teardown.ts
+++ b/test/teardown.ts
@@ -1,5 +1,8 @@
import { remove } from "fs-extra";
+import { EnvironmentVariables } from "./util";
+
+const env = process.env as EnvironmentVariables;
export default async function(): Promise<void> {
- await remove(process.env.BASE_DIR);
+ await remove(env.BASE_DIR);
} \ No newline at end of file