Как я могу использовать регулярное выражение с переменной и подстрокой в cypress.should для проверки URL по машинописи? что-то вроде? const string = /key_to_be_include\w+key1__
$ {v1} ,key2__
$ {v2} /
//url: example.com/subdomain1/subdomainb/?key_xxxx=xxxxx&key_to_be_include=~alltextneed%25needtoBypass,key1__value1,key2__value2&...
const v1 = 'value1'
const v2 = 'value2'
const string = /key_to_be_include\w+key1__`${v1}`,key2__`${v2}`/
cy.url().should('contains', string);