We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff1ae3a commit 3c3b972Copy full SHA for 3c3b972
src/cache.test.ts
@@ -12,11 +12,11 @@ describe('cache', () => {
12
method: 'POST',
13
path: '/v1/completions',
14
authHeader: 'api-key-!',
15
- body: '{ "ok": true }',
+ body: '{"ok":true}',
16
};
17
const result = await getCacheKey(params);
18
expect(utils.objectHash).toHaveBeenCalledWith(params);
19
- expect(result).toEqual('1a97143b720b3d82cf93a34a5a02c61de1492b18d813f4f1859251eef1a738be');
+ expect(result).toEqual('de8cb85a7a697a5ee1458b31857c4db1c94760b2a14681052170bed55bf6db1b');
20
});
21
22
it('removes null or empty values', async () => {
0 commit comments