mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-02-04 20:19:47 +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
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;
|