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");