本文介绍了打字稿 - 茉莉 - 放肆 - AngularJS的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们使用的是带有打字稿angulatJs。
单元测试我们使用的是茉莉花。
并运行茉莉我们正在使用的放肆
Hi we are using angulatJs with typescript.For unit testing we are using Jasmine.And to run jasmine we are using Chutzpah.
当我试图建立的项目它给我一个错误,
When i am trying to build project it giving me an error that
的ReferenceError:找不到变量:角
在那里我有添加参考.spect.ts正确。
Where i have added reference to the .spect.ts correctly.
///<reference path="../external/angularJS/1.0.8/angular.d.ts" />
///<reference path="../external/angularJS/1.0.8/angular-ui.d.ts" />
///<reference path="../external/angularJS/1.0.8/angular-mocks.d.ts" />
///<reference path="../_references.d.ts" />
不过还是我收到的的ReferenceError:找不到变量:角
任何建议??
感谢
推荐答案
这些指的都是.d.ts文件,但放肆需要知道实际执行的.js文件。可以使用做到这一点。
Those references are to the .d.ts file but Chutzpah needs to know where the actual implementation .js files are. You can do this using
/// <chutzpah_reference path="path/to/angular.js" >
/// <chutzpah_reference path="path/to/angular-ui.js" >
/// <chutzpah_reference path="path/to/angular-mock.js" >
这篇关于打字稿 - 茉莉 - 放肆 - AngularJS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!