css-inherit-fn
Version:
Sass and Less mixins to enable CSS --var: calc(inherit(--var) + 1);
16 lines (12 loc) • 562 B
JavaScript
it('compiled css sets --hue correctly / it works', () => {
cy.visit('./tests/front/hue.test.html')
cy.get('body').should('have.css', 'background-color', 'rgb(0, 128, 0)')
})
it('compiled css sets --depth correctly / it works', () => {
cy.visit('./tests/front/depth.test.html')
cy.get('body').should('have.css', 'background-color', 'rgb(0, 128, 0)')
})
it('compiled css sets --sticky correctly / it works', () => {
cy.visit('./tests/front/sticky.test.html')
cy.get('body').should('have.css', 'background-color', 'rgb(0, 128, 0)')
})