1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-01-24 03:48:40 +02:00
uptime-kuma/test/prepare-test-server.js

11 lines
161 B
JavaScript
Raw Normal View History

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