Skip to content

Commit 60e463f

Browse files
fix: removed commented tests
1 parent b1dae22 commit 60e463f

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

test/typescript/entry-query.test.ts

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -454,19 +454,6 @@ describe('Entry Query Test', () => {
454454
expect(query._query).toEqual({"query": {"taxonomies.taxonomy_uid": {"$above": "term_uid", "levels": 4 }}});
455455
done();
456456
});
457-
458-
// test('Taxonomy Query: Get All Entries With Taxonomy For One Content type', done => {
459-
// const query = makeEntryQuery().where("taxonomies.taxonomy_uid", "term_uid").where("_content_type", "ct1");
460-
// expect(query._query).toEqual({"query": {"taxonomies.taxonomy_uid": "term_uid", "_content_type": "ct1"}});
461-
// done();
462-
// });
463-
464-
// test('Taxonomy Query: Get All Entries With Taxonomy For Multiple Content types', done => {
465-
// const query = makeEntryQuery().where("taxonomies.taxonomy_uid", "term_uid").containedIn("_content_type", ["ct1", "ct2"]);
466-
// expect(query._query).toEqual({"query": {"taxonomies.taxonomy_uid": "term_uid", "_content_type": {$in: ["ct1", "ct2"]}}});
467-
// done();
468-
// });
469-
470457
});
471458

472459
function makeEntryQuery() {

0 commit comments

Comments
 (0)