@@ -5307,12 +5307,12 @@ describe('Parse.Query testing', () => {
53075307 } , { useMasterKey : true } ) ;
53085308 } ) ;
53095309
5310- describe_only_db ( 'mongo' ) ( 'check if containedIn and matchesQuery works with nested keys' , ( ) => {
5310+ describe_only_db ( 'mongo' ) ( 'query nested keys' , ( ) => {
53115311 /**
53125312 * If we use equalTo to compare the nested pointer it works
53135313 * But it does not work with contained in or matchesQuery
53145314 */
5315- it ( 'Parse query works with nested objects if equal to is used ' , async ( ) => {
5315+ it ( 'queries nested key using equalTo ' , async ( ) => {
53165316 const child = new Parse . Object ( 'Child' ) ;
53175317 child . set ( 'key' , 'value' ) ;
53185318 await child . save ( ) ;
@@ -5334,7 +5334,7 @@ describe('Parse.Query testing', () => {
53345334 expect ( query1 . length ) . toEqual ( 1 ) ;
53355335 } ) ;
53365336
5337- it ( 'Parse query works when containedIn is used ' , async ( ) => {
5337+ it ( 'queries nested key using containedIn' , async ( ) => {
53385338 const child = new Parse . Object ( 'Child' ) ;
53395339 child . set ( 'key' , 'value' ) ;
53405340 await child . save ( ) ;
@@ -5356,7 +5356,7 @@ describe('Parse.Query testing', () => {
53565356 expect ( query1 . length ) . toEqual ( 1 ) ;
53575357 } ) ;
53585358
5359- it ( 'Parse query works when matchesQuery is used which in turn uses contained in ' , async ( ) => {
5359+ it ( 'queries nested key using matchesQuery' , async ( ) => {
53605360 const child = new Parse . Object ( 'Child' ) ;
53615361 child . set ( 'key' , 'value' ) ;
53625362 await child . save ( ) ;
0 commit comments