Skip to content

Commit

Permalink
Fix NodeJS tests not to be skipped (#1515)
Browse files Browse the repository at this point in the history
  • Loading branch information
adarovadya authored Jun 3, 2024
1 parent ba57b79 commit 758aea0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/tests/SharedTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2422,7 +2422,7 @@ export function runBaseTests<Context>(config: {
config.timeout,
);

it.only.each([ProtocolVersion.RESP2, ProtocolVersion.RESP3])(
it.each([ProtocolVersion.RESP2, ProtocolVersion.RESP3])(
"renamenx test_%p",
async (protocol) => {
await runTest(async (client: BaseClient) => {
Expand Down

0 comments on commit 758aea0

Please sign in to comment.