Skip to content

Commit

Permalink
add cmd to changelog file and ignore formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Jun 2, 2024
1 parent 2f37372 commit 6e6dd88
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
1 change: 1 addition & 0 deletions node/.prettierignore
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion node/tests/SharedTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ export function runBaseTests<Context>(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,
Expand Down

0 comments on commit 6e6dd88

Please sign in to comment.