We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc5e017 commit 8fd7c73Copy full SHA for 8fd7c73
1 file changed
packages/api-request-builder/test/exports.spec.js
@@ -7,17 +7,19 @@ describe('exports', () => {
7
})
8
9
test('features', () => {
10
- expect(Object.keys(features)).toEqual([
11
- 'create',
12
- 'update',
13
- 'del',
14
- 'query',
15
- 'queryOne',
16
- 'queryExpand',
17
- 'queryLocation',
18
- 'search',
19
- 'projection',
20
- 'suggest',
21
- ])
+ expect(Object.keys(features).sort()).toEqual(
+ [
+ 'create',
+ 'update',
+ 'del',
+ 'query',
+ 'queryOne',
+ 'queryExpand',
+ 'queryLocation',
+ 'search',
+ 'projection',
+ 'suggest',
22
+ ].sort()
23
+ )
24
25
0 commit comments