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