Skip to content

Commit

Permalink
2024/01/13 - First ugly implementation of previous/next of arbitrary …
Browse files Browse the repository at this point in the history
…functions
  • Loading branch information
FadiShawki committed Jan 13, 2024
1 parent 15ac009 commit e44a0b4
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/@orbitmines/explorer/Ray.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ describe("Ray", () => {
expect(current.next.previous.self.any.js).toBe('A');
expect(current.next.next.previous.self.any.js).toBe('B');
expect(current.next.next.previous.previous.self.any.js).toBe('A');
expect(current.next.previous.next.next.previous.self.any.js).toBe('B');
expect(current.next.previous.next.next.previous.next.self.any.js).toBe('C');
});
// test(".next(ref => .continues_with(.vertex.#))", () => {
// let A = Ray.vertex().o({ js: 'A' }).as_reference();
Expand Down

0 comments on commit e44a0b4

Please sign in to comment.