datasurvey/src/main/webapp/app/entities/tienda/listar-tienda-plantilla/listar-tienda-plantilla.com...

25 lines
727 B
TypeScript

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