react-style-tag
Version:
Write scoped, autoprefixed styles declaratively in React
17 lines (13 loc) • 506 B
text/typescript
import { getProcessedStyles } from '../src/styles';
import { DEFAULT_OPTIONS } from '../src/options';
describe('styles', () => {
describe('getProcessedStyles', () => {
it('should return the style string with the options passed', () => {
const style = '.foo { display: flex; }';
const result = getProcessedStyles(style, DEFAULT_OPTIONS);
expect(result).toEqual(
'.foo{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}'
);
});
});
});