grunt-cache-bust-lazy-loading
Version:
Bust static assets from the cache using content hashing. It also supports lazy loading for divs and images when using class lazy.
20 lines (12 loc) • 495 B
JavaScript
;
var grunt = require('grunt');
module.exports = {
ignore: function(test) {
test.expect(3);
var markup = grunt.file.read('tmp/ignorePattern/ignorePattern.html');
test.ok(markup.match(/assets\/toBeIgnoredCSS\.css"/), 'testing toBeIgnoredCSS');
test.ok(markup.match(/assets\/toBeIgnoredJPG\.jpg"/), 'testing toBeIgnoredJPG');
test.ok(markup.match(/assets\/toBeIgnoredJS\.js"/), 'testing toBeIgnoredJS');
test.done();
}
};