mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
fix preparing test
This commit is contained in:
parent
f0670dde20
commit
2bf6a04f81
@ -1,5 +1,9 @@
|
||||
const fs = require("fs");
|
||||
|
||||
fs.rmdirSync("./data/test-chrome-profile", {
|
||||
recursive: true,
|
||||
});
|
||||
const path = "./data/test-chrome-profile";
|
||||
|
||||
if (fs.existsSync(path)) {
|
||||
fs.rmdirSync(path, {
|
||||
recursive: true,
|
||||
});
|
||||
}
|
||||
|
@ -1,5 +1,9 @@
|
||||
const fs = require("fs");
|
||||
|
||||
fs.rmdirSync("./data/test", {
|
||||
recursive: true,
|
||||
});
|
||||
const path = "./data/test";
|
||||
|
||||
if (fs.existsSync(path)) {
|
||||
fs.rmdirSync(path, {
|
||||
recursive: true,
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user