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();
    });
});
