mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
20 lines
478 B
CoffeeScript
20 lines
478 B
CoffeeScript
describe "HomeCtrl", ->
|
|
ctrl = null
|
|
scope = null
|
|
|
|
beforeEach ->
|
|
module 'Darkswarm'
|
|
scope = {}
|
|
|
|
inject ($controller) ->
|
|
ctrl = $controller 'HomeCtrl', {$scope: scope}
|
|
|
|
it "starts with the brand story contracted", ->
|
|
expect(scope.brandStoryExpanded).toBe false
|
|
|
|
it "toggles the brand story", ->
|
|
scope.toggleBrandStory()
|
|
expect(scope.brandStoryExpanded).toBe true
|
|
scope.toggleBrandStory()
|
|
expect(scope.brandStoryExpanded).toBe false
|