From 1dfc3e24ebcb991ec68bafdd98d124cc4eecbedc Mon Sep 17 00:00:00 2001 From: Alex Ni <12097569+nialexsan@users.noreply.github.com> Date: Wed, 15 Nov 2023 14:41:15 -0500 Subject: [PATCH] PKG -- [fcl-wc] fix test --- packages/fcl-wc/README.md | 2 +- packages/fcl-wc/src/fcl-wc.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/fcl-wc/README.md b/packages/fcl-wc/README.md index 7653d5a09..50a38eb6c 100644 --- a/packages/fcl-wc/README.md +++ b/packages/fcl-wc/README.md @@ -23,7 +23,7 @@ Initializtion returns `FclWcServicePlugin` and a Walletconnect `client`. The `cl Passing `FclWcServicePlugin` to `fcl.pluginRegistry.add()` will enable use of the `"WC/RPC"` service strategy and add new and existing WalletConnect services to FCL Discovery. ```javascript -import * as fcl from '@onflow/fcl' +import * as fcl from '@onflow/fcl-core' import { init } from '@onflow/fcl-wc' const { FclWcServicePlugin, client } = await init({ diff --git a/packages/fcl-wc/src/fcl-wc.test.js b/packages/fcl-wc/src/fcl-wc.test.js index 52d680f5b..ee47e8022 100644 --- a/packages/fcl-wc/src/fcl-wc.test.js +++ b/packages/fcl-wc/src/fcl-wc.test.js @@ -1,5 +1,5 @@ import {init} from './fcl-wc' -import * as fcl from '@onflow/fcl' +import * as fcl from '@onflow/fcl-core' jest.mock('@walletconnect/modal', () => {}) jest.mock('@walletconnect/sign-client', () => {})