Skip to content

Commit

Permalink
chore: skip transfer tests (#514)
Browse files Browse the repository at this point in the history
chore: skip transfer tests
  • Loading branch information
joepegler authored May 31, 2024
1 parent 5606954 commit e74606a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bundler/utils/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ export const UserOpWaitForTxHashMaxDurationIntervals: {
export const DEFAULT_ENTRYPOINT_ADDRESS =
"0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789"

export const SDK_VERSION = "4.2.0"
export const SDK_VERSION = "4.4.5"
4 changes: 2 additions & 2 deletions tests/account/write.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ describe("Account:Write", async () => {
expect(success).toBe("true")
}, 60000)

test("should transfer ownership of smart account to accountTwo", async () => {
test.skip("should transfer ownership of smart account to accountTwo", async () => {
const signerOfAccount = walletClient.account.address
const ownerOfAccount = await publicClient.readContract({
address: DEFAULT_ECDSA_OWNERSHIP_MODULE,
Expand All @@ -614,7 +614,7 @@ describe("Account:Write", async () => {
expect(receipt.success).toBe("true")
}, 50000)

test("should revert transfer ownership with signer that is not the owner", async () => {
test.skip("should revert transfer ownership with signer that is not the owner", async () => {
_smartAccount = await createSmartAccountClient({
signer: walletClient,
paymasterUrl,
Expand Down

0 comments on commit e74606a

Please sign in to comment.