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