working updates

This commit is contained in:
2018-03-31 17:35:30 -04:00
parent 2a3b0509a8
commit 7ad3c6b93a
12 changed files with 3329 additions and 39 deletions

View File

@@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ViewCardComponent } from './view-card.component';
describe('ViewCardComponent', () => {
let component: ViewCardComponent;
let fixture: ComponentFixture<ViewCardComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ViewCardComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ViewCardComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});