Files
gocryptotrader/web/src/app/shared/buy-form/buy-form.component.spec.ts
Scott b8e4f497a3 Visual changes (#108)
* Basic dynamically added buy-sell component

* Adds a basic component to display ticker info on the top right of the
GUI

* Dashboard with actual components

* Adds AM charts

* More fake component data
Better handling of dashboard blocks

* Attempting to make the dashboard scalable

* Fixes dashboard sizing
Adjusts dashboard widget margins

* Gets a chart!

* Buy sell updates

* Sprucing the buy sell components

Updates material

Fix up git Pr issues
2018-03-26 12:57:05 +11:00

26 lines
640 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { BuyFormComponent } from './buy-form.component';
describe('BuySellFormComponent', () => {
let component: BuyFormComponent;
let fixture: ComponentFixture<BuyFormComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ BuyFormComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(BuyFormComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});