12345678910111213141516171819202122 |
- import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
- import { ViewAllComponent } from './view-all.component';
- describe('ViewAllComponent', () => {
- let component: ViewAllComponent;
- let fixture: ComponentFixture<ViewAllComponent>;
- beforeEach(waitForAsync(() => {
- TestBed.configureTestingModule({
- imports: [ViewAllComponent],
- }).compileComponents();
- fixture = TestBed.createComponent(ViewAllComponent);
- component = fixture.componentInstance;
- fixture.detectChanges();
- }));
- it('should create', () => {
- expect(component).toBeTruthy();
- });
- });
|