In Cypress.io I am trying to use cy.route to match a request to ensure the entire page has loaded before proceeding.
cy.server();
cy.route({
'https://dev.flurosat.com/histogram**',
method: 'GET'
}).as(getHistogram)
cy.wait('@getHistogram')
In the network tab, I am clearing getting a response but my cy.wait times out after the response shows up.

It appears my globbing pattern is not matching.
I have very similar cy.route commands within this very test, and all are received correctly, however those other commands are matching routes with globbing patterns https://dev.flurosat.com/weather/**, http://dev.flurosat.com/groups/**, where the ** follows a / instead of a query string.
Is it possible to match this route?
I do not want to match with https://dev.flurosat.com/** as this is too generic.
Thanks