Still problems with *Issue tracker*

Sorry if I always come here to ask for help, but I am continually faced with strange and counterintuitive problems.

I’m always facing the issue tracker challenge and I’m pretty much done. The Chai tests all pass. But the system test does not.

The error that is returned to me is:

You can send a GET request to /api/issues/{projectname} for an
array of all issues for that specific projectname, with all the
fields present for each issue.

You can send a GET request to /api/issues/{projectname} and
filter the request by also passing along any field and value as a
URL query (ie. /api/issues/{project}?open=false). You can pass
one or more field/value pairs at once. (Test timed out)

The fact is that during the system tests the console gives me the following data:

100 {
  data: [
    {
      _id: 60607dc43c610107b503edc1,
      project_name: 'get_issues_test_388523',
      issue_text: 'Get Issues Test',
      created_by: 'fCC',
      issue_title: 'Faux Issue 1',
      created_on: 2021-03-28T12:59:48.616Z,
      updated_on: 2021-03-28T12:59:48.616Z,
      open: true,
      __v: 0
    },
    {
      _id: 60607dc43c610107b503edc2,
      project_name: 'get_issues_test_388523',
      issue_text: 'Get Issues Test',
      created_by: 'fCC',
      issue_title: 'Faux Issue 2',
      created_on: 2021-03-28T12:59:48.979Z,
      updated_on: 2021-03-28T12:59:48.979Z,
      open: true,
      __v: 0
    },
    {
      _id: 60607dc53c610107b503edc3,
      project_name: 'get_issues_test_388523',
      issue_text: 'Get Issues Test',
      created_by: 'fCC',
      issue_title: 'Faux Issue 3',
      created_on: 2021-03-28T12:59:49.297Z,
      updated_on: 2021-03-28T12:59:49.297Z,
      open: true,
      __v: 0
    }
  ]
}
100 {
  data: [
    {
      _id: 60607dc93c610107b503edc4,
      project_name: 'get_issues_test_393041',
      issue_title: 'To be Filtered',
      issue_text: 'Filter Issues Test',
      created_by: 'Alice',
      assigned_to: 'Bob',
      created_on: 2021-03-28T12:59:53.167Z,
      updated_on: 2021-03-28T12:59:53.167Z,
      open: true,
      __v: 0
    },
    {
      _id: 60607dca3c610107b503edc5,
      project_name: 'get_issues_test_393041',
      issue_title: 'To be Filtered',
      issue_text: 'Filter Issues Test',
      created_by: 'Alice',
      assigned_to: 'Bob',
      created_on: 2021-03-28T12:59:54.171Z,
      updated_on: 2021-03-28T12:59:54.171Z,
      open: true,
      __v: 0
    },
    {
      _id: 60607dcb3c610107b503edc6,
      project_name: 'get_issues_test_393041',
      issue_title: 'To be Filtered',
      issue_text: 'Filter Issues Test',
      created_by: 'Alice',
      assigned_to: 'Eric',
      created_on: 2021-03-28T12:59:55.498Z,
      updated_on: 2021-03-28T12:59:55.498Z,
      open: true,
      __v: 0
    },
    {
      _id: 60607dcc3c610107b503edc7,
      project_name: 'get_issues_test_393041',
      issue_title: 'To be Filtered',
      issue_text: 'Filter Issues Test',
      created_by: 'Carol',
      assigned_to: 'Eric',
      created_on: 2021-03-28T12:59:56.849Z,
      updated_on: 2021-03-28T12:59:56.849Z,
      open: true,
      __v: 0
    }
  ]
}

which seem to be precisely the results required by the challenge.

Is there any mistake?
What are the results that the system expects to achieve?

(As alwais this is the link to the replit).