describeComponent('mail_view/ui/no_mails_available_pane', function () { 'use strict'; describe('after initialization', function () { it('renders template', function () { this.setupComponent({tag: 'inbox'}); expect(this.$node.html()).toMatch('
\n NO EMAILS IN \'INBOX\'.\n
'); }); it('show different message for search with no results', function () { this.setupComponent({tag: 'all', forSearch: 'search'}); expect(this.$node.html()).toMatch('
\n NO RESULTS FOR: \'SEARCH\'.\n
'); }); it('show only tag information when listing all mails', function () { this.setupComponent({tag: 'all', forSearch: 'in:all'}); expect(this.$node.html()).toMatch('
\n NO EMAILS IN \'ALL\'.\n
'); }); }); });