mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-29 09:15:09 +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
179 B
TypeScript
9 lines
179 B
TypeScript
import fs from 'fs';
|
|
import { tmpDir } from 'utils/fs.util';
|
|
|
|
async function globalSetup() {
|
|
await fs.promises.mkdir(tmpDir, { recursive: true });
|
|
}
|
|
|
|
export default globalSetup;
|