mirror of
https://github.com/openstf/stf
synced 2025-10-04 02:09:32 +02:00
13 lines
226 B
JavaScript
13 lines
226 B
JavaScript
describe('install', function() {
|
|
|
|
beforeEach(angular.mock.module(require('./').name))
|
|
|
|
it('should ...', inject(function($filter) {
|
|
|
|
var filter = $filter('install')
|
|
|
|
expect(filter('input')).toEqual('output')
|
|
|
|
}))
|
|
|
|
})
|