Skip to content

Commit

Permalink
Add missing assertion to test
Browse files Browse the repository at this point in the history
  • Loading branch information
wolmir committed Oct 3, 2022
1 parent 49172bd commit 8ba8236
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions languageServer/src/test/definitions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,5 +104,9 @@ describe('textDocument/definitions', () => {
const response = await requestDefinitions(dvcYaml, 'params.json')

expect(response).toBeTruthy()
expect(response).toStrictEqual({
range: Range.create(Position.create(0, 0), Position.create(0, 0)),
uri: 'file:///params.json'
})
})
})

0 comments on commit 8ba8236

Please sign in to comment.