Try disabling cache

This commit is contained in:
David Baker 2025-11-04 15:08:28 +00:00
parent c14367478a
commit 0711f6a8f7
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

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