diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f2712a04e..ee455596d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ #### Changes +* Node: Added HKEYS command ([#1499](https://github.com/aws/glide-for-redis/pull/1499)) +* Node: Added SMOVE command ([#1476](https://github.com/aws/glide-for-redis/pull/1476)) * Python: Added OBJECT ENCODING command ([#1471](https://github.com/aws/glide-for-redis/pull/1471)) * Python: Added OBJECT FREQ command ([#1472](https://github.com/aws/glide-for-redis/pull/1472)) * Python: Added OBJECT IDLETIME command ([#1474](https://github.com/aws/glide-for-redis/pull/1474)) diff --git a/node/.prettierignore b/node/.prettierignore index 086fea31e1..6ced842400 100644 --- a/node/.prettierignore +++ b/node/.prettierignore @@ -1,5 +1,6 @@ # ignore that dir, because there are a lot of files which we don't manage, e.g. json files in cargo crates rust-client/* +*.md # unignore specific files !rust-client/package.json !rust-client/tsconfig.json diff --git a/node/tests/SharedTests.ts b/node/tests/SharedTests.ts index 071160f956..8ae6e8ca1e 100644 --- a/node/tests/SharedTests.ts +++ b/node/tests/SharedTests.ts @@ -601,7 +601,7 @@ export function runBaseTests(config: { expect(await client.set(key2, value)).toEqual("OK"); - expect(await client.hkeys(key2)).rejects.toThrow(); + await expect(client.hkeys(key2)).rejects.toThrow(); }, protocol); }, config.timeout,