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