Skip to content

Commit

Permalink
skip all secp256k1 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmaayan committed Oct 18, 2023
1 parent 000e6da commit ac820b5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tests/e2e/transaction/signTransaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/transaction/transactionSimulation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/transaction/transactionSubmission.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/account.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ac820b5

Please sign in to comment.