@passmarked/seo
Version:
Rules related to checking for any SEO issues on the page given
27 lines (19 loc) • 348 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