Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mrmurphy/b40181a2e79818aebbd6 to your computer and use it in GitHub Desktop.
Save mrmurphy/b40181a2e79818aebbd6 to your computer and use it in GitHub Desktop.
# Remember, this is wrong!
describe 'A simple Angular app testing suite', ->
it "should load a module from an app, and mock the module's dependency.", ->
module 'NameOfApp', ($provide) ->
$provide.value 'bar',
baz: -> true
return null
inject 'foo', (foo) ->
expect(foo).not.toBe(null)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment