Skip to content

Commit

Permalink
fix: unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matstyler committed Nov 24, 2024
1 parent 241e6af commit 3e81e68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/cache/test/defineWalletSetup.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { describe, expect, it } from 'vitest'
import { defineWalletSetup } from '../src/defineWalletSetup'
import { defineWalletSetup } from '../src'

const PASSWORD = 'Quack Quack! 🦆'
const EXPECTED_HASH = 'f9c5ea5bb2c3aac96ff4'
const EXPECTED_HASH = '46b9dd2b0ba88d13233b'

const testWalletSetupFunction = async (): Promise<void> => {
const result = 1 + 2
Expand Down
2 changes: 1 addition & 1 deletion packages/cache/test/utils/getWalletSetupFuncHash.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { describe, expect, it } from 'vitest'
import { WALLET_SETUP_FUNC_HASH_LENGTH, getWalletSetupFuncHash } from '../../src/utils/getWalletSetupFuncHash'

const EXPECTED_HASH = 'b940c886be3c1a041ddd'
const EXPECTED_HASH = '46b9dd2b0ba88d13233b'

const testFunction = async (name: string) => {
return `Hello ${name}!`
Expand Down

0 comments on commit 3e81e68

Please sign in to comment.