Skip to content

Commit

Permalink
chore: fix export test
Browse files Browse the repository at this point in the history
  • Loading branch information
jenschude committed Nov 18, 2021
1 parent cc5e017 commit 8fd7c73
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions packages/api-request-builder/test/exports.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ describe('exports', () => {
})

test('features', () => {
expect(Object.keys(features)).toEqual([
'create',
'update',
'del',
'query',
'queryOne',
'queryExpand',
'queryLocation',
'search',
'projection',
'suggest',
])
expect(Object.keys(features).sort()).toEqual(
[
'create',
'update',
'del',
'query',
'queryOne',
'queryExpand',
'queryLocation',
'search',
'projection',
'suggest',
].sort()
)
})
})

0 comments on commit 8fd7c73

Please sign in to comment.