UNPKG

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) 561 B
'use strict'; var grunt = require('grunt'); module.exports = { baseDir: function(test) { test.expect(3); var markup = grunt.file.read('tmp/baseDir/baseDir.html'); test.ok(markup.match(/baseDir\.[a-z0-9]{16}\.js/), 'testing baseDir combination of CSS, JS and images'); test.ok(markup.match(/baseDir\.[a-z0-9]{16}\.css/), 'testing baseDir combination of CSS, JS and images'); test.ok(markup.match(/baseDir\.[a-z0-9]{16}\.jpg/), 'testing baseDir combination of CSS, JS and images'); test.done(); } };