@zsoltszabo/reg-pontok-terkep
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.1.1.
28 lines (22 loc) • 825 B
text/typescript
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RpTerkepComponent } from './rp-terkep.component';
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
describe('RpTerkepComponent', () => {
let component: RpTerkepComponent;
let fixture: ComponentFixture<RpTerkepComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [RpTerkepComponent]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RpTerkepComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});