mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-19 08:43:45 +02:00
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
describe('sprintf', function() {
|
|
|
|
beforeEach(module('stf.sprintf'));
|
|
|
|
it('should ...', inject(function($filter) {
|
|
|
|
var filter = $filter('sprintf');
|
|
|
|
expect(filter('input')).toEqual('output');
|
|
|
|
}));
|
|
|
|
}); |