File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5309,9 +5309,9 @@ describe('Parse.Query testing', () => {
5309
5309
5310
5310
/**
5311
5311
* If we use equalTo to comparse the nested pointer it works
5312
- * But it does not work with contained in
5312
+ * But it does not work with contained in or matchesQuery
5313
5313
*/
5314
- fit ( 'Parse query works with nested objects if equal to is used' , async ( ) => {
5314
+ it ( 'Parse query works with nested objects if equal to is used' , async ( ) => {
5315
5315
const child = new Parse . Object ( 'Child' )
5316
5316
child . set ( 'key' , 'value' )
5317
5317
await child . save ( ) ;
@@ -5333,7 +5333,7 @@ describe('Parse.Query testing', () => {
5333
5333
expect ( query1 . length ) . toEqual ( 1 ) ;
5334
5334
} )
5335
5335
5336
- fit ( 'Parse query works when containedIn is used' , async ( ) => {
5336
+ it ( 'Parse query works when containedIn is used' , async ( ) => {
5337
5337
const child = new Parse . Object ( 'Child' )
5338
5338
child . set ( 'key' , 'value' )
5339
5339
await child . save ( ) ;
@@ -5355,7 +5355,7 @@ describe('Parse.Query testing', () => {
5355
5355
expect ( query1 . length ) . toEqual ( 1 ) ;
5356
5356
} )
5357
5357
5358
- fit ( 'Parse query works when matchesQuery is used which in turn uses contained in' , async ( ) => {
5358
+ it ( 'Parse query works when matchesQuery is used which in turn uses contained in' , async ( ) => {
5359
5359
const child = new Parse . Object ( 'Child' )
5360
5360
child . set ( 'key' , 'value' )
5361
5361
await child . save ( ) ;
You can’t perform that action at this time.
0 commit comments