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.
19 lines
448 B
19 lines
448 B
'use strict'; |
|
|
|
/* jasmine specs for filters go here */ |
|
|
|
describe('filter', function() { |
|
beforeEach(module('myApp.filters')); |
|
|
|
|
|
describe('interpolate', function() { |
|
beforeEach(module(function($provide) { |
|
$provide.value('version', 'TEST_VER'); |
|
})); |
|
|
|
|
|
it('should replace VERSION', inject(function(interpolateFilter) { |
|
expect(interpolateFilter('before %VERSION% after')).toEqual('before TEST_VER after'); |
|
})); |
|
}); |
|
});
|
|
|