ember-flex-grid
Version:
Ember components for a responsive, mobile-first grid system based on flex.
22 lines (16 loc) • 436 B
JavaScript
import {
moduleForComponent,
test
} from 'ember-qunit';
moduleForComponent('flex-grid', 'FlexGridComponent', {});
test('it renders', function() {
var component = this.subject();
equal(component._state, 'preRender');
this.append();
equal(component._state, 'inDOM');
});
test('it has the correct class', function() {
this.subject();
var component = this.append();
ok(component.attr('class').indexOf('g') >= 0);
});