blob: f6ca0f88781a3113294499d4c0ce72d4efa0cd73 [file] [log] [blame]
Sean Condon83fc39f2018-04-19 18:56:13 +01001import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3import { AppsComponent } from '../../../../app/view/apps/apps.component';
4
5describe('AppsComponent', () => {
6 let component: AppsComponent;
7 let fixture: ComponentFixture<AppsComponent>;
8
9 beforeEach(async(() => {
10 TestBed.configureTestingModule({
11 declarations: [ AppsComponent ]
12 })
13 .compileComponents();
14 }));
15
16 beforeEach(() => {
17 fixture = TestBed.createComponent(AppsComponent);
18 component = fixture.componentInstance;
19 fixture.detectChanges();
20 });
21
22 it('should create', () => {
23 expect(component).toBeTruthy();
24 });
25});