(value: string)
| 43 | const originHeaders = (baseUrl: string) => ({ origin: new URL(baseUrl).origin }); |
| 44 | |
| 45 | const escapeRegExp = (value: string): string => value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
| 46 | |
| 47 | const setWorkosSessionCookie = async (page: Page, baseUrl: string, cookie: string) => { |
| 48 | await page.context().addCookies([ |
no test coverage detected