UNPKG

cra-template-rb

Version:

The official React Boilerplate template for Create React App

12 lines (10 loc) 301 B
import * as utils from '../utils'; describe('theme utils', () => { it('should get storage item', () => { utils.saveTheme('system'); expect(utils.getThemeFromStorage()).toBe('system'); }); it('should check system theme', () => { expect(utils.isSystemDark).toBeUndefined(); }); });