mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-25 09:23:17 +01:00
test: minor
This commit is contained in:
parent
e777eed00d
commit
209f30998e
@ -39,7 +39,8 @@ describe("get", () => {
|
|||||||
["customer.orders.foo", undefined],
|
["customer.orders.foo", undefined],
|
||||||
["..customer.foo", undefined],
|
["..customer.foo", undefined],
|
||||||
["..address", [{ city: "bangalore" }]], // .. will return array
|
["..address", [{ city: "bangalore" }]], // .. will return array
|
||||||
["..address[0]", { city: "bangalore" }]
|
["..address[0]", { city: "bangalore" }],
|
||||||
|
["..items..amount[?][0]", 40, amt => amt > 30]
|
||||||
])("%s should be %j %s", (expr, result, filter = undefined) => {
|
])("%s should be %j %s", (expr, result, filter = undefined) => {
|
||||||
expect(get(data, expr, filter)).toEqual(result);
|
expect(get(data, expr, filter)).toEqual(result);
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user