mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-20 00:59:21 +00:00
test(slack): harden fixture cleanup retries
This commit is contained in:
parent
c2a192a48a
commit
df956f8162
1 changed files with 6 additions and 1 deletions
|
|
@ -86,7 +86,12 @@ export function createSlackSessionStoreFixture(prefix: string) {
|
|||
if (!fixtureRoot) {
|
||||
return;
|
||||
}
|
||||
fs.rmSync(fixtureRoot, { recursive: true, force: true });
|
||||
fs.rmSync(fixtureRoot, {
|
||||
recursive: true,
|
||||
force: true,
|
||||
maxRetries: 5,
|
||||
retryDelay: 50,
|
||||
});
|
||||
fixtureRoot = "";
|
||||
},
|
||||
makeTmpStorePath() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue