2017-12-04 15 views
0

완벽하게 작동하는 각도 5 앱에서 jQuery를 사용하지만 카르마 테스트에 문제가 있습니다.karma 테스트에서 jQuery가 정의되지 않았습니다.

import { ElementRef } from '@angular/core'; 
declare var jQuery: any; 

export class Item { 

constructor(private element: ElementRef) { 
    this.init(); 
} 

private init() { 
    this.$item = jQuery(this.element.nativeElement); 
... 

오류

ReferenceError가 : jQuery를 정의하지 않습니다.

package.json는

"dependencies": { 
    "jquery": "3.1.1" 
} 

내 karma.conf에 jQuery를 추가하지만 도움이되지 않았다.

files: [ 
     'node_modules/core-js/client/shim.js', 
     'node_modules/systemjs/dist/system.src.js', 
     'node_modules/zone.js/dist/zone.js', 
     'node_modules/zone.js/dist/proxy.js', 
     'node_modules/zone.js/dist/sync-test.js', 
     'node_modules/zone.js/dist/jasmine-patch.js', 
     'node_modules/zone.js/dist/async-test.js', 
     'node_modules/zone.js/dist/fake-async-test.js', 
     'node_modules/tslib/tslib.js', 
     'node_modules/jquery/dist/jquery.js', 

     {pattern: 'node_modules/rxjs/**/*.js', included: false, watched: false }, 
     {pattern: 'node_modules/rxjs/**/*.js.map', included: false, watched: false }, 
     {pattern: '../karma-test-shim.js', included: true, watched: true}, 
     {pattern: 'node_modules/@angular/**/*.js', included: false, watched: false}, 
     {pattern: 'node_modules/@angular/**/*.js.map', included: false, watched: false}, 
     {pattern: 'node_modules/@ng-idle/core/bundles/core.umd.js', included: false, watched: false}, 
     {pattern: 'node_modules/bowser/bowser.js', included: false, watched: false}, 
     {pattern: 'node_modules/bootstrap/dist/js/bootstrap.js', included: false, watched: false}, 
     {pattern: 'node_modules/tslib/tslib.js', included: false, watched: false}, 
     {pattern: 'node_modules/jquery/dist/jquery.js', included: false, watched: false} 
    ], 
    proxies: { 
     "/node_modules/": "../../node_modules/" 
    }, 
    autoWatch: true, 
    browsers: ['PhantomJS', 'Chrome', 'HeadlessChrome'], 
    singleRun: false 
}); 
}; 

누군가 도와주세요.

미리 감사드립니다. 두 번에 jQuery를 추가 한 것처럼

답변

0

karma.conf.js

module.exports = function(config) { 
    config.set({ 
    files: [ 
     'path_to/jquery.js' 
     ... 
    ], 
    }); 
}; 
0

에서 jQuery 경로를 보이는데 포함 :

files: [ 
     ..... 
     'node_modules/jquery/dist/jquery.js', 

     ..... 
     {pattern: 'node_modules/jquery/dist/jquery.js', included: false, watched: false} 
    ], 

당신이 명시 적으로하지 않는 것을 주장했다을 추가 한 두 번째 시간 그것을 포함하고 싶다. 나는이 두 번째 줄을 제거해야한다고 생각합니다.