Skip to content

Commit 8a04fe5

Browse files
committed
debug
1 parent 33eae8e commit 8a04fe5

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

spec/ParseQuery.hint.spec.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const masterKeyOptions = {
1818
json: true,
1919
};
2020

21-
describe_only_db('mongo')('Parse.Query hint', () => {
21+
fdescribe_only_db('mongo')('Parse.Query hint', () => {
2222
beforeEach(() => {
2323
config = Config.get('test');
2424
});
@@ -27,7 +27,19 @@ describe_only_db('mongo')('Parse.Query hint', () => {
2727
await TestUtils.destroyAllDataPermanently(false);
2828
});
2929

30-
fit_only_mongodb_version('<5.1 || >=6')('query find with hint string', async () => {
30+
it_only_mongodb_version('<5.0 || >=6')('debug 1', async () => {
31+
expect(0).toBe(0);
32+
});
33+
34+
it_only_mongodb_version('<5 || >=6')('debug 2', async () => {
35+
expect(0).toBe(0);
36+
});
37+
38+
it_only_mongodb_version('<5 || >=6.0.0')('debug 3', async () => {
39+
expect(0).toBe(0);
40+
});
41+
42+
it_only_mongodb_version('<5.1 || >=6')('query find with hint string', async () => {
3143
const object = new TestObject();
3244
await object.save();
3345

0 commit comments

Comments
 (0)