Skip to content

Commit 6cadbf1

Browse files
update changeLog and test->it
1 parent 8fa78d2 commit 6cadbf1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
## Change log
22

33
### Version: 4.0.0-beta.4
4-
#### Date: March-04-2024
4+
#### Date: March-14-2024
55
##### New Features:
6-
- Query implementation for containedIn and notContainedIn
6+
- Query operators implementation
77

88
### Version: 4.0.0-beta.3
99
#### Date: February-13-2024

test/api/entry-queryables.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ describe('Query Operators API test cases', () => {
106106
}
107107
});
108108

109-
test('should return entry for referencedIn query', async () => {
109+
it('should return entry for referencedIn query', async () => {
110110
const query = makeEntries('contenttype_uid').query().where('title', QueryOperation.EQUALS, 'value');
111111
const entryQuery = await makeEntries('contenttype_uid').query().referenceIn('reference_uid', query).find<TEntry>();
112112
if (entryQuery.entries) {

test/unit/entry-queryable.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ describe('Query Operators API test cases', () => {
4747
const query = contentType.Entry().query().equalTo('fieldUID', 'value');
4848
expect(query._parameters).toStrictEqual({ 'fieldUID': 'value' });
4949
});
50-
test('should return entry for referencedIn query', async () => {
50+
it('should return entry for referencedIn query', async () => {
5151
const query1 = contentType.Entry().query().containedIn('fieldUID', ['value']);
5252
const entryQuery = await contentType.Entry().query().referenceIn('reference_uid', query1);
5353
if (entryQuery) {

0 commit comments

Comments
 (0)