gel-grid
Version:
A flexible code implementation of the GEL Grid
20 lines (14 loc) • 595 B
JavaScript
describe('gel-wrap()', () => {
it('supports a 1008px width by default', async () => {
const css = await global.compileCSS('test/data/gel-wrap/t1.scss');
expect(css).toMatchSnapshot();
});
it('adds box-sizing properties when box-sizing is enabled', async () => {
const css = await global.compileCSS('test/data/gel-wrap/t2.scss');
expect(css).toMatchSnapshot();
});
it('increases to a 1280px width when the 1280 breakpoint is enabled', async () => {
const css = await global.compileCSS('test/data/gel-wrap/t3.scss');
expect(css).toMatchSnapshot();
});
});