5

I would like to add a variable, 'example', into a regular expression assertion.

const example = Selector('xyz');

await t.expect(getLocation()).match(/^https:\/\/int-.*.example.com\/en\/example\/-\/  ** HERE SHOULD BE INSERTED A VARIABLE, 'example' ** \/$/)

How could I do this?

Alex Skorkin
  • 4,034
  • 3
  • 21
  • 44
Jakub Sip
  • 173
  • 9

1 Answers1

3

You can make it using the RegExp Constructor.

Artem
  • 856
  • 4
  • 11