gel-sass-tools
Version:
A collection of Sass Settings & Tools which align to key GEL values
14 lines (10 loc) • 395 B
JavaScript
describe('rtl()', () => {
it('uses ltr when the $rtl variable is not set', async () => {
const css = await global.compileCSS('test/data/rtl/left.scss');
expect(css).toMatchSnapshot();
});
it('switches to rtl when the $rtl variable is set to `true`', async () => {
const css = await global.compileCSS('test/data/rtl/right.scss');
expect(css).toMatchSnapshot();
});
});