grunt-cache-bust-alt
Version:
An alternative version of Bust static assets from the cache using content hashing
20 lines (12 loc) • 459 B
JavaScript
;
var grunt = require('grunt');
module.exports = {
jsonOutput: function(test) {
test.expect(2);
var expected = grunt.file.read('tests/jsonOutput/jsonOutputExpected.json').trim();
var output = grunt.file.read('tmp/jsonOutput/output/cachebuster-map.json').trim();
test.ok(grunt.file.exists('tmp/jsonOutput/output/cachebuster-map.json'));
test.equal(expected, output);
test.done();
}
};