UNPKG

cachebust

Version:

Append a query string to your assets to bust that cache!

13 lines (9 loc) 307 B
/*global describe,it*/ 'use strict'; var assert = require('assert'), cachebust = require('../lib/cachebust.js'); describe('cachebust node module.', function () { it('must return HTML with query strings appended to asset URLs', function() { assert.notEqual(cachebust.busted(), 'awesome'); }); });