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

25 lines
682 B
TypeScript
Raw Normal View History

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