import { transformURL } from '../utils'; describe('transformURL utility', () => { it.each([ [ 'overstock subcategory', 'https://www.overstock.com/Home-Garden/Living-Room-Chairs/Accent-Chairs,/chair-type,/2737/subcat.html?featuredproduct=25772429&featuredoption=43456046&ci_sku=31066998-000-000&cnc=US', ], [ 'wayfair', 'https://www.wayfair.com/South-Shore--Versa-Desk-with-Hutch-1210-L32-K~TH10018.html?refid=FR49-TH10018_32927724&PiID%5B%5D=32927724', ], [ 'houzz', 'https://www.houzz.com/pvp/hal-desk-chair-white-prpv-pv~39086779?m_refid=PLA_HZ_39086779', ], ])('returns correct url for %s url', (_retailer, url) => { const transformedUrl = transformURL(url); expect(transformedUrl).toMatchSnapshot(); }); });