Update tests

This commit is contained in:
Andrew Kingston 2024-10-29 15:19:32 +00:00
parent 765b3d2f97
commit 599370b6ed
No known key found for this signature in database
1 changed files with 8 additions and 8 deletions

View File

@ -4329,8 +4329,8 @@ describe.each([
{
name: "can handle logical operator all",
insert: [
{ string: "bar", num: 1 },
{ string: "foo", num: 2 },
{ string: "bar", number: 1 },
{ string: "foo", number: 2 },
],
query: {
groups: [
@ -4344,7 +4344,7 @@ describe.each([
},
{
operator: BasicOperator.EQUAL,
field: "num",
field: "number",
value: 2,
},
],
@ -4355,13 +4355,13 @@ describe.each([
sort: "string",
sortOrder: SortOrder.ASCENDING,
},
expected: [{ string: "foo", num: 2 }],
expected: [{ string: "foo", number: 2 }],
},
{
name: "overrides allOr with logical operators",
insert: [
{ string: "bar", num: 1 },
{ string: "foo", num: 1 },
{ string: "bar", number: 1 },
{ string: "foo", number: 1 },
],
query: {
groups: [
@ -4376,7 +4376,7 @@ describe.each([
},
{
operator: BasicOperator.EQUAL,
field: "num",
field: "number",
value: 1,
},
],
@ -4387,7 +4387,7 @@ describe.each([
sort: "string",
sortOrder: SortOrder.ASCENDING,
},
expected: [{ string: "foo", num: 1 }],
expected: [{ string: "foo", number: 1 }],
},
]