Files
cypress/packages/server/test/unit/cache_buster_spec.coffee
T
2017-06-05 15:58:50 -04:00

19 lines
519 B
CoffeeScript

require("../spec_helper")
CacheBuster = require("#{root}lib/util/cache_buster")
describe "lib/cache_buster", ->
context "#get", ->
it "returns seperator + 3 characters", ->
expect(CacheBuster.get().length).to.eq(4)
context "#strip", ->
it "strips cache buster", ->
rand = CacheBuster.get()
file = "foo.js#{rand}"
expect(CacheBuster.strip(file)).to.eq("foo.js")
it "is noop without cache buster", ->
file = "foo.js"
expect(CacheBuster.strip(file)).to.eq("foo.js")