Skip to content

Commit ee9bcde

Browse files
committed
tests: up
1 parent 26c981a commit ee9bcde

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/zksync/actions/requestExecute.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ baseClientL2.request = (async ({ method, params }) => {
4444
}) as EIP1193RequestFn
4545
const clientL2 = baseClientL2.extend(publicActionsL2())
4646

47-
test('default', async () => {
47+
test.skip('default', async () => {
4848
expect(
4949
await requestExecute(client, {
5050
account: privateKeyToAccount(accounts[0].privateKey),

src/zksync/actions/requestExecute.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import type { Address } from 'abitype'
2-
import type { Hex } from '../../types/misc.js'
32
import { generatePrivateKey } from '../../accounts/generatePrivateKey.js'
43
import type { Account } from '../../accounts/types.js'
54
import { privateKeyToAddress } from '../../accounts/utils/privateKeyToAddress.js'
@@ -21,6 +20,7 @@ import type {
2120
DeriveChain,
2221
GetChainParameter,
2322
} from '../../types/chain.js'
23+
import type { Hex } from '../../types/misc.js'
2424
import type { UnionEvaluate, UnionOmit } from '../../types/utils.js'
2525
import {
2626
type FormattedTransactionRequest,

src/zksync/decorators/publicL2.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ test.skip('getL2TokenAddress', async () => {
235235
).toBeDefined()
236236
})
237237

238-
test('getL1TokenAddress', async () => {
238+
test.skip('getL1TokenAddress', async () => {
239239
const daiL1 = '0x70a0F165d6f8054d0d0CF8dFd4DD2005f0AF6B55'
240240
const daiL2 = '0xFC073319977e314F251EAE6ae6bE76B0B3BAeeCF'
241241
const client = anvilZksync.getClient()

0 commit comments

Comments
 (0)