We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df3e2e0 commit 750b5cbCopy full SHA for 750b5cb
packages/fyllut/cypress/support/commands.ts
@@ -83,7 +83,7 @@ Cypress.Commands.add('defaultIntercepts', () => {
83
cy.intercept('POST', '/amplitude/collect-auto').as('amplitudeLogging');
84
cy.intercept('POST', '/fyllut/api/log*', { body: 'ok' }).as('logger');
85
cy.intercept('GET', '/fyllut/api/config*').as('getConfig');
86
- cy.intercept('GET', '/fyllut/api/countries*').as('getCountries');
+ cy.intercept('GET', /fyllut\/api\/countries.*/).as('getCountries');
87
cy.intercept('GET', '/fyllut/api/global-translations/*').as('getGlobalTranslations');
88
cy.intercept('GET', /fyllut\/api\/common-codes\/currencies.*/).as('getCurrencies');
89
cy.intercept('GET', '/fyllut/api/translations/*').as('getTranslations');
0 commit comments