aboutsummaryrefslogtreecommitdiff
path: root/test/teardown.ts
blob: c5b49e35b5163feb3db554718366b4e169a428a4 (plain)
1
2
3
4
5
6
7
8
import { remove } from "fs-extra";
import { EnvironmentVariables } from "./util";

const env = process.env as EnvironmentVariables;

export default async function(): Promise<void> {
	await remove(env.BASE_DIR);
}