Skip to content

Commit

Permalink
chore: re-enable adapters tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarenaldi committed Feb 24, 2025
1 parent 905614c commit 1287367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/client/src/ethers/ethers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { loginAsAccountOwner } from '../test-utils';
// biome-ignore lint/suspicious/noExplicitAny: needs a fix in @lens-network/sdk
const wallet = new Wallet(import.meta.env.PRIVATE_KEY, getDefaultProvider(Network.Testnet) as any);

describe.skip('Given an integration with ethers.js', { timeout: 10000 }, () => {
describe('Given an integration with ethers.js', { timeout: 10000 }, () => {
describe('When handling transaction actions', () => {
it('Then it should be possible to chain them with other helpers', async () => {
const result = await loginAsAccountOwner().andThen((sessionClient) =>
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/viem/viem.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const walletClient = createWalletClient({
transport: http(),
});

describe.skip('Given an integration with viem', { timeout: 10000 }, () => {
describe('Given an integration with viem', { timeout: 10000 }, () => {
describe('When handling transaction actions', () => {
it('Then it should be possible to chain them with other helpers', async () => {
const result = await loginAsAccountOwner().andThen((sessionClient) =>
Expand Down

0 comments on commit 1287367

Please sign in to comment.