Fork of jasmine-flight for Flight Standalone
Usage:
'use strict';
describeComponent('component/Example', AddressList, function () {
// Initialize the component and attach it to the DOM
beforeEach(function () {
setupComponent();
});
it('should be defined', function () {
expect(this.component).toBeDefined();
});
it('should do something', function () {
expect(true).toBe(false);
});
});