diff --git a/tests/e2e/transaction/signTransaction.test.ts b/tests/e2e/transaction/signTransaction.test.ts index 94e39f555..580251304 100644 --- a/tests/e2e/transaction/signTransaction.test.ts +++ b/tests/e2e/transaction/signTransaction.test.ts @@ -82,7 +82,7 @@ describe("sign transaction", () => { }); }); - describe("Secp256k1", () => { + describe.skip("Secp256k1", () => { test("it signs a script transaction", async () => { const rawTxn = await aptos.generateTransaction({ sender: senderSecp256k1Account.accountAddress.toString(), diff --git a/tests/e2e/transaction/transactionSimulation.test.ts b/tests/e2e/transaction/transactionSimulation.test.ts index 38d13c900..b2ec02494 100644 --- a/tests/e2e/transaction/transactionSimulation.test.ts +++ b/tests/e2e/transaction/transactionSimulation.test.ts @@ -199,7 +199,7 @@ describe("transaction simulation", () => { }); }); - describe("Secp256k1", () => { + describe.skip("Secp256k1", () => { describe("single signer", () => { test("with script payload", async () => { const rawTxn = await aptos.generateTransaction({ diff --git a/tests/e2e/transaction/transactionSubmission.test.ts b/tests/e2e/transaction/transactionSubmission.test.ts index 2d6541689..7a5439bb9 100644 --- a/tests/e2e/transaction/transactionSubmission.test.ts +++ b/tests/e2e/transaction/transactionSubmission.test.ts @@ -52,7 +52,7 @@ describe("transaction submission", () => { longTestTimeout, ); - test("it submits an entry function transaction with Secp256k1Ecdsa", async () => { + test("it submits an entry function transaction", async () => { const config = new AptosConfig({ network: Network.LOCAL }); const aptos = new Aptos(config); const alice = Account.generate(); @@ -75,7 +75,7 @@ describe("transaction submission", () => { }); await waitForTransaction({ aptosConfig: config, transactionHash: response.hash }); }); - test("it submits an entry function transaction", async () => { + test.skip("it submits an entry function transaction with Secp256k1Ecdsa", async () => { const config = new AptosConfig({ network: Network.LOCAL }); const aptos = new Aptos(config); const alice = Account.generate(SigningScheme.Secp256k1Ecdsa); diff --git a/tests/unit/account.test.ts b/tests/unit/account.test.ts index c1c6db3ab..c3db7eb38 100644 --- a/tests/unit/account.test.ts +++ b/tests/unit/account.test.ts @@ -88,7 +88,7 @@ describe("Ed25519 Account", () => { }); }); -describe("Secp256k1 Account", () => { +describe.skip("Secp256k1 Account", () => { it("should create an instance of Account correctly without error", () => { // Account with Secp256k1 scheme const secp256k1Account = Account.generate(SigningScheme.Secp256k1Ecdsa);