Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
arobsn committed Oct 23, 2024
1 parent daf5408 commit 09985ef
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/core/src/builder/outputBuilder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ describe("Building", () => {
it("Should build box without tokens", () => {
const boxCandidate = new OutputBuilder(SAFE_MIN_BOX_VALUE, address, height).build();

expect(boxCandidate.boxId).toBeUndefined();
expect(boxCandidate.value).toEqual(SAFE_MIN_BOX_VALUE);
expect(boxCandidate.ergoTree).toEqual(ErgoAddress.fromBase58(address).ergoTree);
expect(boxCandidate.creationHeight).toEqual(height);
Expand All @@ -378,7 +377,6 @@ describe("Building", () => {
.addTokens({ tokenId: tokenB, amount: 1n })
.build();

expect(boxCandidate.boxId).toBeUndefined();
expect(boxCandidate.value).toEqual(SAFE_MIN_BOX_VALUE);
expect(boxCandidate.ergoTree).toEqual(ErgoAddress.fromBase58(address).ergoTree);
expect(boxCandidate.creationHeight).toEqual(height);
Expand All @@ -399,7 +397,6 @@ describe("Building", () => {
})
.build(regularBoxes);

expect(boxCandidate.boxId).toBeUndefined();
expect(boxCandidate.value).toEqual(SAFE_MIN_BOX_VALUE);
expect(boxCandidate.ergoTree).toEqual(ErgoAddress.fromBase58(address).ergoTree);
expect(boxCandidate.creationHeight).toEqual(height);
Expand Down Expand Up @@ -428,7 +425,6 @@ describe("Building", () => {
})
.build(regularBoxes);

expect(boxCandidate.boxId).toBeUndefined();
expect(boxCandidate.value).toEqual(SAFE_MIN_BOX_VALUE);
expect(boxCandidate.ergoTree).toEqual(ErgoAddress.fromBase58(address).ergoTree);
expect(boxCandidate.creationHeight).toEqual(height);
Expand Down Expand Up @@ -469,7 +465,6 @@ describe("Building", () => {
})
.build(regularBoxes);

expect(boxCandidate.boxId).toBeUndefined();
expect(boxCandidate.value).toEqual(SAFE_MIN_BOX_VALUE);
expect(boxCandidate.ergoTree).toEqual(ErgoAddress.fromBase58(address).ergoTree);
expect(boxCandidate.creationHeight).toEqual(height);
Expand All @@ -495,7 +490,6 @@ describe("Building", () => {
.setAdditionalRegisters({ R4: "0e00" })
.build(regularBoxes);

expect(boxCandidate.boxId).toBeUndefined();
expect(boxCandidate.value).toEqual(SAFE_MIN_BOX_VALUE);
expect(boxCandidate.ergoTree).toEqual(ErgoAddress.fromBase58(address).ergoTree);
expect(boxCandidate.creationHeight).toEqual(height);
Expand Down

0 comments on commit 09985ef

Please sign in to comment.