mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-08 22:56:06 +00:00
10 lines
212 B
CoffeeScript
10 lines
212 B
CoffeeScript
describe 'Cart service', ->
|
|
Cart = null
|
|
orders = []
|
|
|
|
beforeEach ->
|
|
module 'Darkswarm'
|
|
angular.module('Darkswarm').value('order', orders)
|
|
inject ($injector)->
|
|
Cart = $injector.get("Cart")
|