I'm stubbing the following:
cy.route("GET", "**/api/v2/equipment/brand/?website=*", {
count: 0,
next: null,
previous: null,
results: []
}).as("findBrandsByWebsite");
But then I see that the stub is not been used.
What am I missing?
Thanks!
