elem
您的规范的上下文是什么?这是$compiled
指令吗?
你beforeEach
看起来像什么?
的内部实现是dropDown
什么样的?
这就是我测试指令的方式:
describe('directive', function () {
var el, $scope;
beforeEach(function () {
module('my.mod');
inject(function ($compile, $rootScope) {
$scope = $rootScope.$new();
el = $compile('<some-custom-dir></some-custom-dir>')($scope);
$scope.$digest();
// or if isolated $scope:
el.isolateScope().$digest();
});
});
it('some css property', function () {
expect(el.css('display')).to.eq('block');
});
it('some attribute', function () {
expect(el[0].getAttribute('something')); // You need to unwrap the angular.element(el) with [0] to access the native methods.
});
it('some other attribute', function () {
expect(el.attr('someAttr')).to.eq('...'); // Or just use .attr()
});
});
另外,to.be
不能这样使用。您可以通过to.be
以下方式使用:
.to.be.true;
.to.be.false;
.to.be.null;
.to.be.undefined;
.to.be.empty;
.to.be.arguments;
.to.be.ok;
.to.be.above();
.to.be.a(Type);
.to.be.an(Type);
.to.be.closeTo(min, max); // delta range
.to.be.instanceOf(Constructor);
.to.be.within(min, max);
.to.be.at.most(max);
.to.be.below(max);
.to.be.at.least(min);
.to.be.above(min);
您正在寻找的是.to.eq
or.to.equal
方法。
expect('asdf').to.be('asdf'); // Nope!
expect('qwer').to.eq('qwer'); // Yay!
expect([]).to.eq([]); // Nope..
expect([]).to.deep.equal([]); // Yay!
expect({}).to.eq({}); // Nope..
expect({}).to.eql({}); // Yay!