UNPKG

@bootstrap-styled/css-utils

Version:

Bootstrap mixins and utilities in javascript for bootstrap-styled.

12 lines (10 loc) 398 B
import { fromJS } from 'immutable'; import { getCursorUtilities } from '../cursor'; describe('bootstrap cursor utility', () => { it('getCursorUtilities should return a list of cursor css utility', () => { const css = getCursorUtilities(); expect(css).not.toContain('undefined'); expect(css).not.toContain('null'); expect(fromJS({ css }).hashCode()).toEqual(222728468); }); });