Skip to content

Commit

Permalink
tests(integration): add change value to send operation
Browse files Browse the repository at this point in the history
  • Loading branch information
r4mmer committed Dec 27, 2024
1 parent edd8234 commit d120896
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/integration/template/transaction/template.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,11 @@ describe('Template execution', () => {
expect(tx.outputs[1].tokenData).toBe(0);
expect(tx.outputs[1].value).toBe(2n);

// Custom token
// Custom token change
expect(tx.outputs[2].tokenData).toBe(1);
expect(tx.outputs[2].value).toBe(3n);
expect(tx.outputs[2].value).toBe(97n);

// Custom token change
// Custom token
expect(tx.outputs[3].tokenData).toBe(1);
expect(tx.outputs[3].value).toBe(3n);

Expand Down

0 comments on commit d120896

Please sign in to comment.