Telegram Web, preconfigured for usage in I2P. http://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
751 B

describe('myHead directive', function () {
var $compile, $rootScope;
beforeEach(module('myApp.templates'));
beforeEach(module('myApp.directives'));
beforeEach(inject(function (_$compile_, _$rootScope_) {
$compile = _$compile_;
$rootScope = _$rootScope_;
}));
it('compiles a my-head attribute', function () {
var compiledElement = $compile('<div my-head></div>')($rootScope);
$rootScope.$digest(); // Fire watchers
expect(compiledElement.html()).toContain('tg_page_head');
});
it('compiles a my-head element', function () {
var compiledElement = $compile('<my-head></my-head>')($rootScope);
$rootScope.$digest(); // Fire watchers
expect(compiledElement.html()).toContain('tg_page_head');
});
});