uptime-kuma/test/prepare-jest.js

11 lines
201 B
JavaScript
Raw Normal View History

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