describeComponent('search/results_highlighter', function () { 'use strict'; var self; beforeEach(function () { self = this; }); it('highlights only words that matches with the keywords given', function () { this.setupComponent('
Any one seeing too many open bugs
'); this.component.attr = {keywords: ["any"]}; self.component.highlightResults(event, {where: '#text'}); var highlightedWords = self.component.$node.find('.search-highlight').length; expect(highlightedWords).toEqual(1); }); });