24 lines
618 B
TypeScript
24 lines
618 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { LargeUserComponent } from './large-user.component';
|
|
|
|
describe('LargeUserComponent', () => {
|
|
let component: LargeUserComponent;
|
|
let fixture: ComponentFixture<LargeUserComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [LargeUserComponent]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(LargeUserComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|