Skip to content

Commit 116e1f9

Browse files
chore: test case fix
1 parent 9ffcd76 commit 116e1f9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/ParseQuery.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5309,9 +5309,9 @@ describe('Parse.Query testing', () => {
53095309

53105310
/**
53115311
* 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
53135313
*/
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 () => {
53155315
const child = new Parse.Object('Child')
53165316
child.set('key','value')
53175317
await child.save();
@@ -5333,7 +5333,7 @@ describe('Parse.Query testing', () => {
53335333
expect(query1.length).toEqual(1);
53345334
})
53355335

5336-
fit('Parse query works when containedIn is used', async () => {
5336+
it('Parse query works when containedIn is used', async () => {
53375337
const child = new Parse.Object('Child')
53385338
child.set('key','value')
53395339
await child.save();
@@ -5355,7 +5355,7 @@ describe('Parse.Query testing', () => {
53555355
expect(query1.length).toEqual(1);
53565356
})
53575357

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 () => {
53595359
const child = new Parse.Object('Child')
53605360
child.set('key','value')
53615361
await child.save();

0 commit comments

Comments
 (0)