我已經使用新的angular-cli版本創建了一個項目,並且使項目啓動並運行。當我運行ng serve和ng build命令時,它完美地工作,沒有任何錯誤。但是當我嘗試運行測試時,它顯示了我這樣的錯誤。在運行'ng test'命令時找不到jQuery
theme.provider.ts (53,31): Property 'removeClass' does not exist on type 'JQuery'.
theme.provider.ts (64,35): Property 'addClass' does not exist on type 'JQuery'.
theme.provider.spec.ts (7,30): Cannot find name '$'.
我在下面的方式加了jQuery角,cli.json
"scripts": [
"../node_modules/jquery/dist/jquery.min.js"
],
然後我就通過這種方式
import 'jquery';
進口jQuery來我的主要模塊有上述配置中的任何缺失步驟?
你可以把錯誤的文字不是圖像? –
發佈已更新 – JLS