Test different sort
This commit is contained in:
parent
b778921028
commit
82e2385099
|
@ -790,7 +790,37 @@ describe("/rows", () => {
|
||||||
},
|
},
|
||||||
["Danny", "Charly", "Bob", "Alice"],
|
["Danny", "Charly", "Bob", "Alice"],
|
||||||
],
|
],
|
||||||
])("allow sorting", async (sortParams, expected) => {
|
[
|
||||||
|
{
|
||||||
|
field: "age",
|
||||||
|
order: SortOrder.ASCENDING,
|
||||||
|
type: SortType.number,
|
||||||
|
},
|
||||||
|
["Danny", "Alice", "Charly", "Bob"],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
field: "age",
|
||||||
|
order: SortOrder.ASCENDING,
|
||||||
|
},
|
||||||
|
["Danny", "Alice", "Charly", "Bob"],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
field: "age",
|
||||||
|
order: SortOrder.DESCENDING,
|
||||||
|
},
|
||||||
|
["Bob", "Charly", "Alice", "Danny"],
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
field: "age",
|
||||||
|
order: SortOrder.DESCENDING,
|
||||||
|
type: SortType.number,
|
||||||
|
},
|
||||||
|
["Bob", "Charly", "Alice", "Danny"],
|
||||||
|
],
|
||||||
|
])("allow sorting (%s)", async (sortParams, expected) => {
|
||||||
await config.createTable(userTable())
|
await config.createTable(userTable())
|
||||||
const users = [
|
const users = [
|
||||||
{ name: "Alice", age: 25 },
|
{ name: "Alice", age: 25 },
|
||||||
|
|
Loading…
Reference in New Issue