From 8a03e718de6abcc05164dc8ee5a7aff97b72402f Mon Sep 17 00:00:00 2001 From: Mathijs de Bruin Date: Thu, 31 Oct 2024 14:37:38 +0000 Subject: [PATCH] Test cleanup should never fail. --- cypress/e2e/data_layer/spec.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/data_layer/spec.cy.ts b/cypress/e2e/data_layer/spec.cy.ts index 0320e89e98..394bb6e745 100644 --- a/cypress/e2e/data_layer/spec.cy.ts +++ b/cypress/e2e/data_layer/spec.cy.ts @@ -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}`); }); });