Skip to content

Commit

Permalink
Stop skipping secpk tests
Browse files Browse the repository at this point in the history
  • Loading branch information
banool committed Oct 17, 2023
1 parent 2613082 commit b60d41f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/transaction/sign_transaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe("sign transaction", () => {
});

describe("Secp256k1", () => {
test.skip("it signs a script transaction", async () => {
test("it signs a script transaction", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
data: {
Expand Down Expand Up @@ -117,7 +117,7 @@ describe("sign transaction", () => {
const authenticator = AccountAuthenticator.deserialize(deserializer);
expect(authenticator instanceof AccountAuthenticatorSecp256k1).toBeTruthy();
});
test.skip("it signs a multi sig transaction", async () => {
test("it signs a multi sig transaction", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
data: {
Expand Down
16 changes: 8 additions & 8 deletions tests/e2e/transaction/transaction_simulation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ describe("transaction simulation", () => {

describe("Secp256k1", () => {
describe("single signer", () => {
test.skip("with script payload", async () => {
test("with script payload", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
data: {
Expand All @@ -215,7 +215,7 @@ describe("transaction simulation", () => {
});
expect(response.success).toBeTruthy();
});
test.skip("with entry function payload", async () => {
test("with entry function payload", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
data: {
Expand All @@ -229,7 +229,7 @@ describe("transaction simulation", () => {
});
expect(response.success).toBeTruthy();
});
test.skip("with multisig payload", async () => {
test("with multisig payload", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
data: {
Expand All @@ -246,7 +246,7 @@ describe("transaction simulation", () => {
});
});
describe("multi agent", () => {
test.skip("with script payload", async () => {
test("with script payload", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
secondarySignerAddresses: [secondarySignerAccount.accountAddress.toString()],
Expand All @@ -270,7 +270,7 @@ describe("transaction simulation", () => {
expect(response.success).toBeTruthy();
});

test.skip(
test(
"with entry function payload",
async () => {
const rawTxn = await aptos.generateTransaction({
Expand Down Expand Up @@ -299,7 +299,7 @@ describe("transaction simulation", () => {
);
});
describe("fee payer", () => {
test.skip("with script payload", async () => {
test("with script payload", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
feePayerAddress: feePayerAccount.accountAddress.toString(),
Expand Down Expand Up @@ -332,7 +332,7 @@ describe("transaction simulation", () => {
});
expect(response.success).toBeTruthy();
});
test.skip("with multisig payload", async () => {
test("with multisig payload", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
feePayerAddress: feePayerAccount.accountAddress.toString(),
Expand All @@ -350,7 +350,7 @@ describe("transaction simulation", () => {
});
expect(response.success).toBeTruthy();
});
test.skip("with multi agent transaction", async () => {
test("with multi agent transaction", async () => {
const rawTxn = await aptos.generateTransaction({
sender: senderSecp256k1Account.accountAddress.toString(),
secondarySignerAddresses: [secondarySignerAccount.accountAddress.toString()],
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/transaction/transaction_submission.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe("transaction submission", () => {
longTestTimeout,
);

test.skip("it submits an entry function transaction with Secp256k1Ecdsa", async () => {
test("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();
Expand All @@ -75,7 +75,7 @@ describe("transaction submission", () => {
});
await waitForTransaction({ aptosConfig: config, txnHash: response.hash });
});
test.skip("it submits an entry function transaction", 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(SigningScheme.Secp256k1Ecdsa);
Expand Down

0 comments on commit b60d41f

Please sign in to comment.