Skip to content

Commit

Permalink
fix(GHA): install before install:all
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenvechain committed Nov 12, 2024
1 parent f78fad5 commit f865f2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified .yarn/install-state.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/dapp-kit/test/helpers/mocked-sign-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import type {
import { DefaultMethods } from '../../src';
import { wcSessionStruct } from './wc-fixtures';
import { address, mockedConnexSigner } from './mocked-signer';
import { randomUUID } from 'node:crypto';
import { Blake2b256 } from '@vechain/sdk-core';

const requestHandler: IEngine['request'] = vi.fn();
const connectHandler: IEngine['connect'] = vi.fn();
Expand Down Expand Up @@ -55,7 +55,7 @@ const mockedSignClient = {
keys: [],
get: vi.fn(),
},
name: randomUUID(),
name: Blake2b256.random(12).toString(),
} as unknown as ResolvedSignClient;

vi.mocked(mockedSignClient.request).mockImplementation(
Expand Down

0 comments on commit f865f2a

Please sign in to comment.