'use strict'

stash = {}

window.stashIt = (obj, key) ->
  stash[key] = obj[key]

window.unstashIt = (obj, key) ->
  obj[key] = stash[key]

  delete stash[key]

window.AutoConfigFakeServerPrivates = {} # Allow the app to make its privates public

context = describe # easier to read tests
