(overrides: Partial<CodeNavLocation>)
| 181 | |
| 182 | describe("rankLocations", () => { |
| 183 | function loc(overrides: Partial<CodeNavLocation>): CodeNavLocation { |
| 184 | return { |
| 185 | kind: "reference", |
| 186 | confidence: "possible", |
| 187 | filePath: "src/other.ts", |
| 188 | line: 1, |
| 189 | column: 0, |
| 190 | snippet: "some code", |
| 191 | ...overrides, |
| 192 | }; |
| 193 | } |
| 194 | |
| 195 | test("same file ranks first", () => { |
| 196 | const locations = [ |