Skip to content

Commit 8fd7c73

Browse files
committed
chore: fix export test
1 parent cc5e017 commit 8fd7c73

1 file changed

Lines changed: 14 additions & 12 deletions

File tree

packages/api-request-builder/test/exports.spec.js

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,19 @@ describe('exports', () => {
77
})
88

99
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-
])
10+
expect(Object.keys(features).sort()).toEqual(
11+
[
12+
'create',
13+
'update',
14+
'del',
15+
'query',
16+
'queryOne',
17+
'queryExpand',
18+
'queryLocation',
19+
'search',
20+
'projection',
21+
'suggest',
22+
].sort()
23+
)
2224
})
2325
})

0 commit comments

Comments
 (0)