Skip to content

Commit

Permalink
[backend] fix counters
Browse files Browse the repository at this point in the history
  • Loading branch information
marieflorescontact committed Sep 30, 2024
1 parent 36c3a8a commit 4ce09d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,9 @@ describe('Complex filters combinations for elastic queries', () => {
},
}
});
expect(queryResult.data.reports.edges.length).toEqual(5); // the 4 reports created + the report in DATA-TEST-STIX2_v2.json
expect(queryResult.data.reports.edges.length).toEqual(6); // the 4 reports created + the 2 report in DATA-TEST-STIX2_v2.json
queryResult = await queryAsAdmin({ query: REPORT_LIST_QUERY });
expect(queryResult.data.reports.edges.length).toEqual(5);
expect(queryResult.data.reports.edges.length).toEqual(6);
});
it('should list entities according to filters: one filter', async () => {
const queryResult = await queryAsAdmin({
Expand Down

0 comments on commit 4ce09d3

Please sign in to comment.