From 0711f6a8f702b5f1bb27fde1f88c8bd026cfb1bd Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 4 Nov 2025 15:08:28 +0000 Subject: [PATCH] Try disabling cache --- .github/workflows/tests.yml | 2 +- .../views/dialogs/ManualDeviceKeyVerificationDialog-test.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4fd5f4f633..5cb6af256a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -71,7 +71,7 @@ jobs: --ci \ --max-workers ${{ steps.cpu-cores.outputs.count }} \ --shard ${{ matrix.runner }}/${{ strategy.job-total }} \ - --cacheDirectory /tmp/jest_cache + --no-cache env: JEST_SONAR_UNIQUE_OUTPUT_NAME: true diff --git a/test/unit-tests/components/views/dialogs/ManualDeviceKeyVerificationDialog-test.tsx b/test/unit-tests/components/views/dialogs/ManualDeviceKeyVerificationDialog-test.tsx index dbe1599836..3193b41e66 100644 --- a/test/unit-tests/components/views/dialogs/ManualDeviceKeyVerificationDialog-test.tsx +++ b/test/unit-tests/components/views/dialogs/ManualDeviceKeyVerificationDialog-test.tsx @@ -48,7 +48,7 @@ describe("ManualDeviceKeyVerificationDialog", () => { }); }); - it.skip("should not call crossSignDevice if fingerprint is wrong", async () => { + it("should not call crossSignDevice if fingerprint is wrong", async () => { // Given a dialog populated with incorrect fingerprint const { dialog, onFinished } = populateDialog("DEVICEID", "WRONG_FINGERPRINT");