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