CoffeeScriptでAngularJSのテスト書いている時に暗黙的に最後の行を returnする仕様に気をつける

まんまこれ↓
CoffeeScript で AngularJS のテストを書くときに気をつけること - Qiita

'use strict'

describe 'Service: AwesomeInterceptor', ->

  httpProvider = {}
  # load the service's module
  beforeEach module 'myApp',($httpProvider)->
    httpProvider= $httpProvider
    return # <- つけた

#.........