uptime-kuma/test/prepare-jest.js

10 lines
158 B
JavaScript
Raw Normal View History

2021-10-05 02:39:44 -07:00
const fs = require("fs");
2021-10-05 05:37:32 -07:00
const path = "./data/test-chrome-profile";
if (fs.existsSync(path)) {
fs.rmdirSync(path, {
recursive: true,
});
}