标签: javascript angular typescript jasmine
我的html中加载了一个js文件:
<script src="https://domain.code.js" type="text/javascript"></script>
要在服务中使用它,我要声明它:
declare function someFunction(value: string): string;
现在,在测试此服务时,我想在茉莉花测试中调用存根版本。谁能告诉我该怎么做?