funky-framadate-front/src/app/features/shared/components/ui/form/errors-list/errors-list.component.spec.ts

25 lines
628 B
TypeScript

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