uptime-kuma/test/prepare-jest.js

11 lines
201 B
JavaScript
Raw Normal View History

2021-10-05 05:39:44 -04:00
const fs = require("fs");
2022-03-02 02:48:08 -05:00
const rmSync = require("../extra/fs-rmSync.js");
2021-10-05 05:39:44 -04:00
2021-10-05 08:37:32 -04:00
const path = "./data/test-chrome-profile";
if (fs.existsSync(path)) {
2022-03-02 02:48:08 -05:00
rmSync(path, {
2021-10-05 08:37:32 -04:00
recursive: true,
});
}