@@ -124,7 +124,7 @@ describe("Redis Client", () => {
124124 expect ( result ) . toBeUndefined ( ) ;
125125 } ) ;
126126
127- describe . skip ( "Sentinel Mode" , ( ) => {
127+ describe ( "Sentinel Mode" , ( ) => {
128128 beforeEach ( async ( ) => {
129129 jest . clearAllMocks ( ) ;
130130 await RedisClient . closeAllClients ( ) ;
@@ -166,7 +166,7 @@ describe("Redis Client", () => {
166166 expect ( redisClient . isCluster ) . toBe ( false ) ;
167167 } ) ;
168168
169- it ( "prefers master_name field over URI fragment" , async ( ) => {
169+ it . skip ( "prefers master_name field over URI fragment" , async ( ) => {
170170 cds . env . requires . redis = {
171171 credentials : {
172172 sentinel_nodes : [ { host : "sentinel.local" , port : 26379 } ] ,
@@ -181,7 +181,7 @@ describe("Redis Client", () => {
181181 expect ( redis . createSentinel ) . toHaveBeenCalledWith ( expect . objectContaining ( { name : "explicit-master" } ) ) ;
182182 } ) ;
183183
184- it ( "uses default port 26379 when not specified" , async ( ) => {
184+ it . skip ( "uses default port 26379 when not specified" , async ( ) => {
185185 cds . env . requires . redis = {
186186 credentials : {
187187 sentinel_nodes : [ { hostname : "sentinel.local" } ] ,
@@ -199,7 +199,7 @@ describe("Redis Client", () => {
199199 ) ;
200200 } ) ;
201201
202- it ( "returns undefined if master name not found" , async ( ) => {
202+ it . skip ( "returns undefined if master name not found" , async ( ) => {
203203 cds . env . requires . redis = {
204204 credentials : {
205205 sentinel_nodes : [ { hostname : "sentinel.local" } ] ,
@@ -211,7 +211,7 @@ describe("Redis Client", () => {
211211 expect ( client ) . toBeUndefined ( ) ;
212212 } ) ;
213213
214- it ( "prioritizes sentinel over cluster mode" , async ( ) => {
214+ it . skip ( "prioritizes sentinel over cluster mode" , async ( ) => {
215215 cds . env . requires . redis = {
216216 credentials : {
217217 sentinel_nodes : [ { hostname : "sentinel.local" } ] ,
0 commit comments