Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thecrypticace committed Dec 21, 2023
1 parent d5d0eb3 commit 9049b3f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ withFixture('basic', (c) => {
let result = await completion({ lang, text, position, settings })
let textEdit = expect.objectContaining({ range: { start: position, end: position } })

expect(result.items.length).toBe(11175)
expect(result.items.filter((item) => item.label.endsWith(':')).length).toBe(157)
expect(result.items.length).toBe(11448)
expect(result.items.filter((item) => item.label.endsWith(':')).length).toBe(165)
expect(result).toEqual({
isIncomplete: false,
items: expect.arrayContaining([
Expand Down

0 comments on commit 9049b3f

Please sign in to comment.