From 340d0b64380e30c4239a25e37b2130875f6a950e Mon Sep 17 00:00:00 2001 From: ivaylogarnev-limechain Date: Mon, 16 Dec 2024 17:05:16 +0200 Subject: [PATCH] fix: Unskipped test which are now fixed Signed-off-by: ivaylogarnev-limechain --- ...t-token-fee-schedule-update-transaction.ts | 30 +++++++++---------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/tests/token-service/test-token-fee-schedule-update-transaction.ts b/src/tests/token-service/test-token-fee-schedule-update-transaction.ts index 17bc830..a2a8922 100644 --- a/src/tests/token-service/test-token-fee-schedule-update-transaction.ts +++ b/src/tests/token-service/test-token-fee-schedule-update-transaction.ts @@ -257,7 +257,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#3) Updates a token's fee schedule with a fixed fee with an amount of 9,223,372,036,854,775,807 (int64 max)", async function () { + it("(#3) Updates a token's fee schedule with a fixed fee with an amount of 9,223,372,036,854,775,807 (int64 max)", async function () { const feeCollectorAccountId = process.env .OPERATOR_ACCOUNT_ID as string as string; const feeCollectorsExempt = false; @@ -288,7 +288,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { ); }); - it.skip("(#4) Updates a token's fee schedule with a fixed fee with an amount of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { + it("(#4) Updates a token's fee schedule with a fixed fee with an amount of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const amount = "9223372036854775806"; @@ -426,7 +426,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#9) Updates a token's fee schedule with a fractional fee with a numerator of 9,223,372,036,854,775,807 (int64 max)", async function () { + it("(#9) Updates a token's fee schedule with a fractional fee with a numerator of 9,223,372,036,854,775,807 (int64 max)", async function () { const feeCollectorAccountId = process.env .OPERATOR_ACCOUNT_ID as string as string; const feeCollectorsExempt = false; @@ -469,7 +469,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { ); }); - it.skip("(#10) Updates a token's fee schedule with a fractional fee with a numerator of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { + it("(#10) Updates a token's fee schedule with a fractional fee with a numerator of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "9223372036854775806"; @@ -627,7 +627,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#15) Updates a token's fee schedule with a fractional fee with a denominator of 9,223,372,036,854,775,807 (int64 max)", async function () { + it("(#15) Updates a token's fee schedule with a fractional fee with a denominator of 9,223,372,036,854,775,807 (int64 max)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -669,7 +669,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { ); }); - it.skip("(#16) Updates a token's fee schedule with a fractional fee with a denominator of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { + it("(#16) Updates a token's fee schedule with a fractional fee with a denominator of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -769,7 +769,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#19) Updates a token's fee schedule with a fractional fee with a minimum amount of 0", async function () { + it("(#19) Updates a token's fee schedule with a fractional fee with a minimum amount of 0", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -962,7 +962,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#25) Updates a token's fee schedule with a fractional fee with a maximum amount of 0", async function () { + it("(#25) Updates a token's fee schedule with a fractional fee with a maximum amount of 0", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -1033,7 +1033,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#27) Updates a token's fee schedule with a fractional fee with a maximum amount of 9,223,372,036,854,775,807 (int64 max)", async function () { + it("(#27) Updates a token's fee schedule with a fractional fee with a maximum amount of 9,223,372,036,854,775,807 (int64 max)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -1075,7 +1075,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { ); }); - it.skip("(#28) Updates a token's fee schedule with a fractional fee with a maximum amount of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { + it("(#28) Updates a token's fee schedule with a fractional fee with a maximum amount of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -1407,7 +1407,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#39) Updates a NFT's fee schedule with a royalty fee with a denominator of 9,223,372,036,854,775,807 (int64 max)", async function () { + it("(#39) Updates a NFT's fee schedule with a royalty fee with a denominator of 9,223,372,036,854,775,807 (int64 max)", async function () { const feeCollectorAccountId = process.env .OPERATOR_ACCOUNT_ID as string as string; const feeCollectorsExempt = false; @@ -1446,7 +1446,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { ); }); - it.skip("(#40) Updates a NFT's fee schedule with a royalty fee with a denominator of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { + it("(#40) Updates a NFT's fee schedule with a royalty fee with a denominator of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -1600,7 +1600,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#45) Updates a NFT's fee schedule with a royalty fee with a fallback fee with an amount of 9,223,372,036,854,775,807 (int64 max)", async function () { + it("(#45) Updates a NFT's fee schedule with a royalty fee with a fallback fee with an amount of 9,223,372,036,854,775,807 (int64 max)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -1638,7 +1638,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { ); }); - it.skip("(#46) Updates a NFT's fee schedule with a royalty fee with a fallback fee with an amount of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { + it("(#46) Updates a NFT's fee schedule with a royalty fee with a fallback fee with an amount of 9,223,372,036,854,775,806 (int64 max - 1)", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1"; @@ -2150,7 +2150,7 @@ describe("TokenFeeScheduleUpdateTransaction", function () { assert.fail("Should throw an error"); }); - it.skip("(#61) Updates a token's fee schedule with a fractional fee that is assessed to the receiver", async function () { + it("(#61) Updates a token's fee schedule with a fractional fee that is assessed to the receiver", async function () { const feeCollectorAccountId = process.env.OPERATOR_ACCOUNT_ID as string; const feeCollectorsExempt = false; const numerator = "1";