Newer
Older
CamaraComercioWeb / src / app / shared / components / dropdown-categories / dropdown-categories.component.spec.ts
Fabian Vera on 28 Sep 2021 711 bytes [add] starting the project
import { ComponentFixture, TestBed } from '@angular/core/testing';

import { DropdownCategoriesComponent } from './dropdown-categories.component';

describe('DropdownCategoriesComponent', () => {
  let component: DropdownCategoriesComponent;
  let fixture: ComponentFixture<DropdownCategoriesComponent>;

  beforeEach(async () => {
    await TestBed.configureTestingModule({
      declarations: [ DropdownCategoriesComponent ]
    })
    .compileComponents();
  });

  beforeEach(() => {
    fixture = TestBed.createComponent(DropdownCategoriesComponent);
    component = fixture.componentInstance;
    fixture.detectChanges();
  });

  it('should create', () => {
    expect(component).toBeTruthy();
  });
});