mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
409 B
CoffeeScript
15 lines
409 B
CoffeeScript
describe "Enterprise service", ->
|
|
Enterprise = null
|
|
enterprise = { name: "test ent name" }
|
|
beforeEach ->
|
|
module 'admin.enterprises'
|
|
module ($provide) ->
|
|
$provide.value 'enterprise', enterprise
|
|
null
|
|
|
|
inject ($injector) ->
|
|
Enterprise = $injector.get("Enterprise")
|
|
|
|
it "stores enterprise value as Enterprise.enterprise", ->
|
|
expect(Enterprise.enterprise).toBe enterprise
|