@passmarked/css
Version:
Rules related to checking the compatability of the CSS on the page ensuring the stylesheet works on older browsers too
27 lines (19 loc) • 349 B
JavaScript
const passmarked = require('passmarked');
const _ = require('underscore')
/**
* Creates the actual test
**/
var Test = passmarked.createTest(
_.extend(
{},
require('./package.json'),
require('./worker.json'),
{
rules: require('./lib')
}
)
);
/**
* Expose the test
**/
module.exports = exports = Test;