mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 06:50:43 +00:00
test(slack): harden fixture cleanup retries
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user