datasurvey/src/main/webapp/app/entities/encuesta/complete/complete.component.spec.ts

25 lines
730 B
TypeScript
Raw Normal View History

2021-08-01 00:27:00 +00:00
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { EncuestaEncuestaCompleteComponent } from './complete.component';
describe('EncuestaEncuestaCompleteComponent', () => {
let component: EncuestaEncuestaCompleteComponent;
let fixture: ComponentFixture<EncuestaEncuestaCompleteComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [EncuestaEncuestaCompleteComponent],
}).compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(EncuestaEncuestaCompleteComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});