grunt-cache-bust-alt
Version:
An alternative version of Bust static assets from the cache using content hashing
19 lines (11 loc) • 398 B
JavaScript
;
var grunt = require('grunt');
module.exports = {
comments: function(test) {
test.expect(2);
var markup = grunt.file.read('tmp/htmlComments/htmlComments.html');
test.ok(markup.match(/standard\.[a-z0-9]{16}\.css/), 'testing stylesheet');
test.ok(markup.match(/standard\.[a-z0-9]{16}\.js/), 'testing javascript');
test.done();
}
};