Skip to content

Commit 46a2ad8

Browse files
committed
test: remove
1 parent 41f511f commit 46a2ad8

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

packages/modules/valkey/src/valkey-container.test.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,6 @@ describe("ValkeyContainer", { timeout: 240_000 }, () => {
3333
client.destroy();
3434
});
3535

36-
it("should connect with username & password and execute set-get", async () => {
37-
await using container = await new ValkeyContainer(IMAGE).withUsername("tester").withPassword("test").start();
38-
39-
const client = createClient({ url: container.getConnectionUrl() });
40-
await client.connect();
41-
42-
await client.set("key", "val");
43-
expect(await client.get("key")).toBe("val");
44-
45-
client.destroy();
46-
});
47-
4836
it("should reconnect with volume and persistence data", async () => {
4937
// valkeyWithPersistentData {
5038
const sourcePath = fs.mkdtempSync("valkey-");

0 commit comments

Comments
 (0)