我正在根据这个博客创建一个 Facebook 登录指令。
app.directive('facebook', function($http) {
return {
restrict: 'A',
scope: true,
controller: function($scope, $attrs, $location) {
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
// ... the rest of the directive
如何对这个匿名函数进行单元测试?模拟文档似乎不起作用。