@bootstrap-styled/css-utils
Version:
Bootstrap mixins and utilities in javascript for bootstrap-styled.
12 lines (10 loc) • 404 B
JavaScript
var _screenreaders = require("../screenreaders");
describe('bootstrap screenreaders utility', function () {
it('getScreenReadersUtilities should return a list of css utilities', function () {
var css = (0, _screenreaders.getScreenReadersUtilities)();
expect(css).not.toContain('undefined');
expect(css).not.toContain('null');
expect(css).toContain('.sr-only');
});
});
;