簡體   English   中英

角茉莉花測試錯誤-未定義$ injector

[英]Angular Jasmine tests error - $injector is not defined

在項目上使用Karma Im回填測試(其他人編寫了angular應用程序-我有“高興”的意思)...

用coffeescript編寫的項目。

我進行了以下茉莉花測試:

'use strict'

describe 'module:file:controller', () ->
  $controller = null
  $scope = null
  $state = null
  $stateParams = null
  Page = null
  File = null

  beforeEach (module 'forge')

  beforeEach inject(($rootScope, _$controller_, _$state_, _$stateParams_, _Page_, _File_) ->
    $scope = $rootScope.$new()
    $state = _$state_
    $stateParams = _$stateParams_
    Page = _Page_
    File = _File_
    $controller = _$controller_
  )

  describe 'init', () ->
    controller = null

    beforeEach () ->
      $state = {}
      $stateParams = {}
      controller = $controller('fileController', {$scope: $scope, $state: $state, $stateParams: $stateParams, Page: Page, File: File})

    it 'should set page title to File', () ->
      spyOn(Page, 'title')

      expect(Page.title).toHaveBeenCalledWith 'Files'

    it 'should do something with delete', () ->
      spyOn(Page, 'addAlert')

      $scope.delete(1)

      expect(Page.addAlert).toHaveBeenCalled()

這是控制器:

forge.controller 'fileController', ($scope, $state, $stateParams, Page, File) ->

  # Inject base controller
  $injector.invoke BaseController, this, { $scope: $scope, Factory: File }

  # Set page title
  Page.title 'Files'

  console.log $stateParams
  console.log $state

  # Delete
  $scope.delete = (id) ->

    Page.addAlert 'success', '[TEST] Deleting file...'

    console.log $stateParams
    console.log $state

  # Delegate actions
  switch $stateParams.action
    when 'delete' then $scope.delete $stateParams.id

我有一堆單元測試運行良好。 該應用程序是使用grunt構建的,所有代碼都被編譯到/dist/assets/js/app.js中。

我的業力配置:

module.exports = (config) ->
  config.set

    files: [
      '../../dist/assets/js/app.js'
      '../../bower_components/angular-mocks/angular-mocks.js'
      'unit/**/**.test.coffee'
      '../module/**/test/unit/**/*.unit.coffee'
    ]

    preprocessors:
      'unit/**/**.test.coffee': ['coffee']
      '../module/**/test/unit/**/*.unit.coffee': ['coffee']

    frameworks: ['jasmine']

    reporters: ['progress']

    browsers: ['Chrome', 'Firefox', 'Safari']

    logLevel: 'ERROR'

    jasmineNodeOpts:
      onComplete: null
      isVerbose: false
      showColors: true
      includeStackTrace: false
      defaultTimeoutInterval: 30000

當我運行測試時,我收到:

Chrome 48.0.2564 (Mac OS X 10.11.3) module:file:controller init should set page title to File FAILED
  ReferenceError: $injector is not defined
  at new <anonymous> (/Users/usr1/repos/proj/dist/assets/js/forge.js:75397:3)
  at Object.instantiate (/Users/usr1/repos/proj/dist/assets/js/forge.js:14449:14)
  at /Users/usr1/repos/proj/dist/assets/js/forge.js:19700:28
  at /Users/usr1/repos/proj/bower_components/angular-mocks/angular-mocks.js:2170:12
  at Object.<anonymous> (/Users/usr1/repos/proj/src/module/file/test/unit/controller/file-controller.unit.js:25:27)
  Expected spy title to have been called with [ 'Files' ] but it was never called.
  at Object.<anonymous> (/Users/usr1/repos/proj/src/module/file/test/unit/controller/file-controller.unit.js:35:33)
Chrome 48.0.2564 (Mac OS X 10.11.3) module:file:controller init should do something with delete FAILED
  ReferenceError: $injector is not defined
  at new <anonymous> (/Users/usr1/repos/proj/dist/assets/js/forge.js:75397:3)
  at Object.instantiate (/Users/usr1/repos/proj/dist/assets/js/forge.js:14449:14)
  at /Users/usr1/repos/proj/dist/assets/js/forge.js:19700:28
  at /Users/usr1/repos/proj/bower_components/angular-mocks/angular-mocks.js:2170:12
  at Object.<anonymous> (/Users/usr1/repos/proj/src/module/file/test/unit/controller/file-controller.unit.js:25:27)
TypeError: $scope.delete is not a function
  at Object.<anonymous> (/Users/usr1/repos/proj/src/module/file/test/unit/controller/file-controller.unit.js:39:23)
Chrome 48.0.2564 (Mac OS X 10.11.3): Executed 63 of 63 (2 FAILED) (1.155 secs / 1.134 secs)

檢查所有路徑,並在內置的app.js文件中顯示控制器。

現在不知為什么該消息仍然存在,並且任何指針都很好。

我的應用程序已縮小-這將阻止此工作。

角度噴射器文檔。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM