완벽하게 작동하는 각도 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를 추가 한 것처럼