Skip to content

Commit

Permalink
test: uncomment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atamano committed Oct 1, 2023
1 parent 225cc2c commit 88b7e6a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/query.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,16 +197,16 @@ describe('query', () => {
path: `$..[?(@.number==1)]`,
expected: [{ number: 1, exist: true }],
},
// {
// payload: [{ number: 1, exist: true }],
// path: `$..[?(@.number==1)]`,
// expected: [{ number: 1, exist: true }],
// },
// {
// payload: PAYLOAD,
// path: `$..[?(@.number < 2 )]`,
// expected: [{ number: 1, exist: true }],
// },
{
payload: [{ number: 1, exist: true }],
path: `$..[?(@.number==1)]`,
expected: [{ number: 1, exist: true }],
},
{
payload: PAYLOAD,
path: `$..[?(@.number < 2 )]`,
expected: [{ number: 1, exist: true }],
},
{
payload: PAYLOAD,
path: `$..nested[?(@.number>=2)]`,
Expand Down

0 comments on commit 88b7e6a

Please sign in to comment.