0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-21 18:58:58 +01:00
uptime-kuma/test/prepare-test-server.js

11 lines
161 B
JavaScript
Raw Permalink Normal View History

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