Skip to content

Commit

Permalink
fix: Unskipped test which are now fixed
Browse files Browse the repository at this point in the history
Signed-off-by: ivaylogarnev-limechain <ivaylo.garnev@limechain.tech>
  • Loading branch information
ivaylogarnev-limechain committed Dec 16, 2024
1 parent f18c461 commit 340d0b6
Showing 1 changed file with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down

0 comments on commit 340d0b6

Please sign in to comment.