todomvc
Version:
> Helping you select an MV\* framework
31 lines (23 loc) • 689 B
JavaScript
/*global describe, it, beforeEach, inject, expect, angular*/
(function () {
'use strict';
beforeEach(module('todomvc'));
describe('todoFocus directive', function () {
var scope, compile, browser;
beforeEach(inject(function ($rootScope, $compile, $browser) {
scope = $rootScope.$new();
compile = $compile;
browser = $browser;
}));
it('should focus on truthy expression', function () {
var el = angular.element('<input todo-focus="focus">');
scope.focus = false;
compile(el)(scope);
expect(browser.deferredFns.length).toBe(0);
scope.$apply(function () {
scope.focus = true;
});
expect(browser.deferredFns.length).toBe(1);
});
});
}());