(file: string, id: string, time: number)
| 22 | }) |
| 23 | |
| 24 | function line(file: string, id: string, time: number): LineComment { |
| 25 | return { |
| 26 | id, |
| 27 | file, |
| 28 | comment: id, |
| 29 | time, |
| 30 | selection: { start: 1, end: 1 }, |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | describe("comments session indexing", () => { |
| 35 | test("keeps file list behavior and aggregate chronological order", () => { |