Teste de unidade de filtros personalizados

Se você é como eu que odeia ler uma documentação extensa. Aqui está o exemplo de código de como testar seu filtro

describe("Write a Filter for the showing the unit testing", function () {
describe
("Write a Filter which takes the Key and Id and sends the text", function () {
var filter;
beforeEach
(function () {
module("your module name where the filter is defined");
inject
(function ($filter) {
filter
= $filter;
});
});
it
("Should define a filter with the Dropdown service as dependcies", function () {
var NameFilter= filter("Name of the filter");
expect
(NameFilter).toBeDefined();
});
});
});