blob: f6ca0f88781a3113294499d4c0ce72d4efa0cd73 [file] [log] [blame]
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { AppsComponent } from '../../../../app/view/apps/apps.component';
describe('AppsComponent', () => {
let component: AppsComponent;
let fixture: ComponentFixture<AppsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ AppsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(AppsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});