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.
35 lines
782 B
35 lines
782 B
8 years ago
|
/* global describe, it, inject, expect, beforeEach */
|
||
|
|
||
|
describe('AppFooterController', function () {
|
||
|
var $controller, $scope, service, serviceFlag
|
||
|
|
||
|
beforeEach(module('myApp.controllers'))
|
||
|
|
||
|
beforeEach(function () {
|
||
|
serviceFlag = false
|
||
|
service = {
|
||
|
switchLayout: function (parameter) {
|
||
|
serviceFlag = true
|
||
|
}
|
||
|
}
|
||
|
|
||
|
inject(function (_$controller_, _$rootScope_) {
|
||
|
$controller = _$controller_
|
||
|
|
||
|
$scope = _$rootScope_.$new()
|
||
|
$controller('AppFooterController', {
|
||
|
$scope: $scope,
|
||
|
LayoutSwitchService: service
|
||
|
})
|
||
|
})
|
||
|
})
|
||
|
|
||
|
// define tests
|
||
|
it('calls the right function', function (done) {
|
||
|
expect(serviceFlag).toBe(false)
|
||
|
$scope.switchLayout(null)
|
||
|
expect(serviceFlag).toBe(true)
|
||
|
done()
|
||
|
})
|
||
|
})
|