mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
12 lines
246 B
CoffeeScript
12 lines
246 B
CoffeeScript
describe "CheckoutCtrl", ->
|
|
ctrl = null
|
|
scope = null
|
|
order = null
|
|
|
|
beforeEach ->
|
|
module("Darkswarm")
|
|
order = {}
|
|
inject ($controller) ->
|
|
scope = {}
|
|
ctrl = $controller 'CheckoutCtrl', {$scope: scope, Order: order}
|