Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
stat committed Feb 1, 2025
1 parent 9ac5c2c commit 422a84d
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@ describe("CdpWalletProvider", () => {
let mockWallet: jest.Mocked<Wallet>;

beforeEach(async () => {
/*
* process.env.CDP_API_KEY_NAME = "test-key";
* process.env.CDP_API_KEY_PRIVATE_KEY = "test-private-key";
*/

mockWallet = {
getDefaultAddress: jest.fn().mockResolvedValue({ getId: () => MOCK_ADDRESS }),
getNetworkId: jest.fn().mockReturnValue(MOCK_NETWORK_ID),
Expand All @@ -39,10 +34,6 @@ describe("CdpWalletProvider", () => {

afterEach(() => {
jest.resetAllMocks();
/*
* delete process.env.CDP_API_KEY_NAME;
* delete process.env.CDP_API_KEY_PRIVATE_KEY;
*/
});

describe("exportWallet", () => {
Expand Down

0 comments on commit 422a84d

Please sign in to comment.