mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
12 lines
279 B
CoffeeScript
12 lines
279 B
CoffeeScript
describe 'Navigation service', ->
|
|
Navigation = null
|
|
|
|
beforeEach ->
|
|
module 'Darkswarm'
|
|
inject ($injector)->
|
|
Navigation = $injector.get("Navigation")
|
|
|
|
it "caches the path provided", ->
|
|
Navigation.navigate "/foo"
|
|
expect(Navigation.path).toEqual "/foo"
|