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