You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

24 lines
616 B

  1. import { ComponentFixture, TestBed } from '@angular/core/testing';
  2. import { UserZoneComponent } from './user-zone.component';
  3. describe('UserZoneComponent', () => {
  4. let component: UserZoneComponent;
  5. let fixture: ComponentFixture<UserZoneComponent>;
  6. beforeEach(async () => {
  7. await TestBed.configureTestingModule({
  8. declarations: [UserZoneComponent]
  9. })
  10. .compileComponents();
  11. fixture = TestBed.createComponent(UserZoneComponent);
  12. component = fixture.componentInstance;
  13. fixture.detectChanges();
  14. });
  15. it('should create', () => {
  16. expect(component).toBeTruthy();
  17. });
  18. });