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