Skip to content

Commit

Permalink
add 2 ore attestion
Browse files Browse the repository at this point in the history
  • Loading branch information
v9n committed Nov 19, 2024
1 parent 5ceffca commit 361e2b2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,12 @@ describe("Client E2E Tests", () => {
expect(tasks2.length).toBeGreaterThanOrEqual(1);

const task1 = tasks1.find(t => t.id == result1.id);
expect(tasks1.find(t => t.id == result2.id)).toBe(undefined);
expect(task1?.id).toEqual(result1.id);
expect(task1?.memo).toEqual('task1 test');

const task2 = tasks2.find(t => t.id == result2.id);
expect(tasks2.find(t => t.id == result1.id)).toBe(undefined);
expect(task2?.id).toEqual(result2.id);
expect(task2?.memo).toEqual('default wallet test');
});
Expand Down

0 comments on commit 361e2b2

Please sign in to comment.