summaryrefslogtreecommitdiff
path: root/web-ui/test/spec/mail_view/ui/no_mails_available_pane.spec.js
blob: 2fee45accc08880eb895eb46264c2bf588064991 (plain)
1
2
3
4
5
6
7
8
9
10
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('<div class="text">NO EMAILS IN \'INBOX\'.</div>');
        });
    });
});