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

10 lines
158 B
JavaScript
Raw 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-chrome-profile";
if (fs.existsSync(path)) {
fs.rmdirSync(path, {
recursive: true,
});
}