簡體   English   中英

AngularJS-使用Jasmine和mixpanel進行測試

[英]AngularJS - testing with Jasmine and mixpanel

在我的angularJS應用程序中,我使用MixPanel通過index.html中的異步腳本進行分析。

的index.html

<script type="text/javascript">(function(e,b){if(!b.__SV){var a,f,i,g;window.mixpanel=b;a=e.createElement("script");a.type="text/javascript";a.async=!0;a.src=("https:"===e.location.protocol?"https:":"http:")+'//cdn.mxpnl.com/libs/mixpanel-2.2.min.js';f=e.getElementsByTagName("script")[0];f.parentNode.insertBefore(a,f);b._i=[];b.init=function(a,e,d){function f(b,h){var a=h.split(".");2==a.length&&(b=b[a[0]],h=a[1]);b[h]=function(){b.push([h].concat(Array.prototype.slice.call(arguments,0)))}}var c=b;"undefined"!== typeof d?c=b[d]=[]:d="mixpanel";c.people=c.people||[];c.toString=function(b){var a="mixpanel";"mixpanel"!==d&&(a+="."+d);b||(a+=" (stub)");return a};c.people.toString=function(){return c.toString(1)+".people (stub)"};i="disable track track_pageview track_links track_forms register register_once alias unregister identify name_tag set_config people.set people.set_once people.increment people.append people.track_charge people.clear_charges people.delete_user".split(" ");for(g=0;g<i.length;g++)f(c,i[g]);
  b._i.push([a,e,d])};b.__SV=1.2}})(document,window.mixpanel||[]);
  mixpanel.init("@@mixPanelId");
</script>

我正在使用Karma和Jasmine編寫測試。 運行karma:unit時 ,出現以下錯誤: ReferenceError:未定義mixpanel

這是由於我在服務之一中對MixPanel進行的調用:

mixpanel.register_once({
  BrowserVersion: "#{browserInfos.browser}-#{browserInfos.version}"
})

您是否知道如何添加MixPanel以避免此錯誤?

為了模擬混合面板,我創建了一個簡單的模擬:

測試/模擬/ mixpanel.coffee

class MixpanelMock
  track: () ->
    console.log("mixpanel.track", arguments)
  register_once: () ->
    console.log("mixpanel.register_once", arguments)

window.mixpanel = new MixpanelMock()

然后,我將其添加到karma.conf.js中 ,一切正常。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM