@@ -5307,12 +5307,12 @@ describe('Parse.Query testing', () => {
5307
5307
} , { useMasterKey : true } ) ;
5308
5308
} ) ;
5309
5309
5310
- describe_only_db ( 'mongo' ) ( 'check if containedIn and matchesQuery works with nested keys' , ( ) => {
5310
+ describe_only_db ( 'mongo' ) ( 'query nested keys' , ( ) => {
5311
5311
/**
5312
5312
* If we use equalTo to compare the nested pointer it works
5313
5313
* But it does not work with contained in or matchesQuery
5314
5314
*/
5315
- it ( 'Parse query works with nested objects if equal to is used ' , async ( ) => {
5315
+ it ( 'queries nested key using equalTo ' , async ( ) => {
5316
5316
const child = new Parse . Object ( 'Child' ) ;
5317
5317
child . set ( 'key' , 'value' ) ;
5318
5318
await child . save ( ) ;
@@ -5334,7 +5334,7 @@ describe('Parse.Query testing', () => {
5334
5334
expect ( query1 . length ) . toEqual ( 1 ) ;
5335
5335
} ) ;
5336
5336
5337
- it ( 'Parse query works when containedIn is used ' , async ( ) => {
5337
+ it ( 'queries nested key using containedIn' , async ( ) => {
5338
5338
const child = new Parse . Object ( 'Child' ) ;
5339
5339
child . set ( 'key' , 'value' ) ;
5340
5340
await child . save ( ) ;
@@ -5356,7 +5356,7 @@ describe('Parse.Query testing', () => {
5356
5356
expect ( query1 . length ) . toEqual ( 1 ) ;
5357
5357
} ) ;
5358
5358
5359
- it ( 'Parse query works when matchesQuery is used which in turn uses contained in ' , async ( ) => {
5359
+ it ( 'queries nested key using matchesQuery' , async ( ) => {
5360
5360
const child = new Parse . Object ( 'Child' ) ;
5361
5361
child . set ( 'key' , 'value' ) ;
5362
5362
await child . save ( ) ;
0 commit comments