UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

12 lines (9 loc) 294 B
import {setRootProperty} from '../set-root-property'; describe('setRootProperty', () => { it('sets styles on the document element', () => { setRootProperty('--topBar', '#eee'); expect(document.documentElement.style.getPropertyValue('--topBar')).toBe( '#eee', ); }); });