0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-22 03:07:50 +01:00
uptime-kuma/test/prepare-test-server.js

11 lines
186 B
JavaScript
Raw Normal View History

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