set_global('$', function () {}); add_dependencies({ Handlebars: 'handlebars', templates: 'js/templates', muting: 'js/muting', narrow: 'js/narrow', stream_color: 'js/stream_color', stream_data: 'js/stream_data', subs: 'js/subs', hashchange: 'js/hashchange' }); set_global('recent_subjects', new global.Dict()); set_global('unread', {}); var stream_list = require('js/stream_list.js'); global.$ = require('jQuery'); $.fn.expectOne = function () { assert(this.length === 1); return this; }; global.use_template('sidebar_subject_list'); global.use_template('stream_sidebar_row'); global.use_template('stream_privacy'); (function test_build_subject_list() { var stream = "devel"; var active_topic = "testing"; var max_topics = 5; var topics = [ {subject: "coding"} ]; global.recent_subjects.set("devel", topics); global.unread.num_unread_for_subject = function () { return 1; }; var topic_html = stream_list._build_subject_list(stream, active_topic, max_topics); global.write_test_output("test_build_subject_list", topic_html); var topic = $(topic_html).find('a').text().trim(); assert.equal(topic, 'coding'); }()); (function test_add_stream_to_sidebar() { // Make a couple calls to add_stream_to_sidebar() and make sure they // generate the right markup as well as play nice with get_stream_li(). var stream_filters = $('