Files
openfoodnetwork/spec/javascripts/unit/darkswarm/controllers/sidebar_controller_spec.js.coffee

15 lines
323 B
CoffeeScript

describe "SidebarCtrl", ->
ctrl = null
scope = null
location = null
beforeEach ->
module("Darkswarm")
location =
path: ->
"/login"
inject ($controller, $rootScope) ->
scope = $rootScope
ctrl = $controller 'SidebarCtrl', {$scope: scope, $location: location}
scope.$apply()