assert-css
v1.0.2
Published
Assert that CSS is constructed properly
Maintainers
Readme
assert-css
Assert that CSS is constructed properly.
Usage
import assertCss from 'assert-css';
describe('CSS generation', function () {
it('should have the expected CSS', function () {
assertCss('body { margin: 0; }').selector('body').includes('margin', 0);
});
});Chains
The project uses object chaining to complete assertions.
.selector()
The .selector() method has the following possible chains:
.selector().exists(), asserts that the selector is within the CSS..selector().not.exists(), asserts that the selector is not within the CSS..selector().includes(property), asserts that the given property exists within the selector..selector().not.includes(property), asserts that the given property does not exist within the selector..selector().includes(property, value), asserts that the property-value pair exists within the selector..selector().not.includes(property, value), asserts that the property-value pair does not exist within the selector.
The value within an includes() chain can be a custom validator function. This will pass in the resolved value as a string. Return true when a match is expected, false to throw an exception.
assertCss('body { margin: 0 1rem }')
.selector('body')
.includes('margin', (value) => value.includes('1rem')); // trueThe given selector must be accurate to the expectation within the CSS. In other words:
assertCss('body[data-theme] { margin: 0 }').selector('body').exists(); // false
assertCss('body[data-theme] { margin: 0 }').selector('body').not.exists(); // true
assertCss('body[data-theme] { margin: 0 }').selector('body[data-theme]').exists(); // trueAlso, note that this will not dive into at-rules. To check for existence within an at-rule, use .atRule() with the appropriate chain.
.atRule()
Similar .selector() in that this checks against the current CSS at-rule and its possible values with some differences:
.includes(value), completes a genericString.includes()against the current value. This is because various at-rule specifications do not have a repeatable construction. So(max-width: 800px)will match againstmax-width,800and800pxas examples. You may provide a function here instead for custom matching..selector(), is chainable off of.atRule()to check for specific selectors within an at-rule with all expected chains further.
See tests for possible example chains.
