uptime-kuma/test/prepare-test-server.js

11 lines
186 B
JavaScript
Raw Permalink Normal View History

2021-10-05 02:39:44 -07:00
const fs = require("fs");
2022-03-01 23:48:08 -08:00
const rmSync = require("../extra/fs-rmSync.js");
2021-10-05 02:39:44 -07:00
2021-10-05 05:37:32 -07:00
const path = "./data/test";
if (fs.existsSync(path)) {
2022-03-01 23:48:08 -08:00
rmSync(path, {
2021-10-05 05:37:32 -07:00
recursive: true,
});
}