Add simple loading indicator

This commit is contained in:
2017-02-04 22:30:58 +08:00
parent f1ea335f9d
commit 2002f2feba
7 changed files with 36 additions and 1 deletions
@@ -0,0 +1,16 @@
import { moduleForComponent, test } from 'ember-qunit';
import hbs from 'htmlbars-inline-precompile';
moduleForComponent('loading-spinner', 'Integration | Component | loading spinner', {
integration: true
});
test('it renders', function(assert) {
// Set any properties with this.set('myProperty', 'value');
// Handle any actions with this.on('myAction', function(val) { ... });
this.render(hbs`{{loading-spinner}}`);
assert.equal(this.$().text().trim(), '');
});