mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 15:39:45 +00:00
Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import fs from 'fs';
|
|
import { tmpDir } from 'utils/fs.util';
|
|
|
|
async function globalTeardown() {
|
|
await fs.promises.rm(tmpDir, { recursive: true, force: true });
|
|
}
|
|
|
|
export default globalTeardown;
|