Skip to content

Commit 2148923

Browse files
committed
test path matcher that is wider
1 parent 0407f40 commit 2148923

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cypress/support/commands.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// Request a HotRod ride
22
Cypress.Commands.add('requestRide', (from, to) => {
3-
var frontendURL = 'http://frontend.' + Cypress.env('HOTROD_NAMESPACE') + ':8080';
3+
var frontendURL = 'http://frontend.' + Cypress.env('HOTROD_NAMESPACE') + ':8080/';
44
// inject routing key
5-
cy.intercept(frontendURL + '/*', (req) => {
5+
cy.intercept('**', (req) => {
66
req.headers['baggage'] += ',sd-routing-key=' + Cypress.env('SIGNADOT_ROUTING_KEY');
77
})
88

0 commit comments

Comments
 (0)