diff --git a/packages/snaps-sandbox/src/state.test.ts b/packages/snaps-sandbox/src/state.test.ts index 49f4ff1673..9f720eb56c 100644 --- a/packages/snaps-sandbox/src/state.test.ts +++ b/packages/snaps-sandbox/src/state.test.ts @@ -105,17 +105,17 @@ describe('historyAtom', () => { timestamp: Date.now(), }; - const secondRequst = { + const secondRequest = { id: '2', title: 'Test 2', request: JSON.stringify({ method: 'test' }), timestamp: Date.now(), }; - store.set(persistedHistoryAtom, [firstRequest, secondRequst]); + store.set(persistedHistoryAtom, [firstRequest, secondRequest]); const updatedRequest = { - ...secondRequst, + ...secondRequest, title: 'Updated Test', }; diff --git a/packages/snaps-utils/src/checksum.test.ts b/packages/snaps-utils/src/checksum.test.ts index 8d0d94069e..fc1429f242 100644 --- a/packages/snaps-utils/src/checksum.test.ts +++ b/packages/snaps-utils/src/checksum.test.ts @@ -37,7 +37,7 @@ describe('checksum', () => { }); }); -describe('checkumFiles', () => { +describe('checksumFiles', () => { it('throws on duplicated paths', async () => { const files = [ new VirtualFile({ value: 'foo', path: '/foo' }),