mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-11 15:52:58 +03: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;
|