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
599 B
23 lines
599 B
8 years ago
|
'use strict'
|
||
8 years ago
|
/* global describe, it, inject, expect, beforeEach, jasmine */
|
||
|
|
||
|
describe('AppImPanelController', function () {
|
||
|
var $scope
|
||
|
|
||
|
beforeEach(module('myApp.controllers'))
|
||
|
|
||
|
beforeEach(function () {
|
||
|
inject(function (_$controller_, _$rootScope_) {
|
||
|
$scope = _$rootScope_.$new()
|
||
|
$scope.$on = jasmine.createSpy('$on')
|
||
|
_$controller_('AppImPanelController', { $scope: $scope })
|
||
|
})
|
||
|
})
|
||
|
|
||
|
// define tests
|
||
|
it('sets $on(user_update) to no-operation function', function (done) {
|
||
|
expect($scope.$on).toHaveBeenCalledWith('user_update', angular.noop)
|
||
|
done()
|
||
|
})
|
||
|
})
|