0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-21 18:58:58 +01:00
uptime-kuma/test/prepare-jest.js
2021-10-05 20:37:32 +08:00

10 lines
158 B
JavaScript

const fs = require("fs");
const path = "./data/test-chrome-profile";
if (fs.existsSync(path)) {
fs.rmdirSync(path, {
recursive: true,
});
}