blob: 71e4d4a420908496f36ff6b2b9fe51bcefa9b152 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
describeComponent('mail_view/ui/spinner', function () {
'use strict';
describe('spinner on initialization', function () {
it('should render the spinner svg', function () {
this.setupComponent();
expect(this.$node.html()).toMatch('<svg id="spinner"');
});
});
});
|