Skip to content

Commit

Permalink
fix: ignore errors from when sessionDir can't be deleted (#508)
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Jul 6, 2023
1 parent faf1343 commit ea28f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export interface TestSessionOptions {
}

// exported for test assertions
export const rmOptions = { recursive: true, force: true, maxRetries: 5, retryDelay: 2000 };
export const rmOptions = { recursive: true, force: true };
/**
* Represents a test session, which is a unique location for non-unit test (nut)
* artifacts such as a project and a mocked home dir. It also provides easy
Expand Down

0 comments on commit ea28f73

Please sign in to comment.