summaryrefslogtreecommitdiffstats
path: root/test/prepare-test-server.js
blob: 1e0ed5cc498722737742df7d9313df8072c9a19e (plain)
1
2
3
4
5
6
7
8
9
10
const fs = require("fs");

const path = "./data/test";

if (fs.existsSync(path)) {
    fs.rmSync(path, {
        recursive: true,
        force: true,
    });
}