Skip to content

Commit

Permalink
Test cleanup should never fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
dokterbob committed Oct 31, 2024
1 parent dc35776 commit 8a03e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/data_layer/spec.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe('Data Layer', () => {
afterEach(() => {
cy.get('@threadHistoryFile').then((threadHistoryFile) => {
// Clean up the thread history file
cy.exec(`rm ${threadHistoryFile}`);
cy.exec(`rm -f ${threadHistoryFile}`);
});
});

Expand Down

0 comments on commit 8a03e71

Please sign in to comment.