Newer
Older

Martin Mechtel
committed
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

mechtelm
committed
import { PrivacyComponent } from './privacy.component';
import {AppRoutingModule} from "../../app-routing.module";
import {IqbComponentsModule} from "iqb-components";

Martin Mechtel
committed

mechtelm
committed
describe('PrivacyComponent', () => {
let component: PrivacyComponent;
let fixture: ComponentFixture<PrivacyComponent>;

Martin Mechtel
committed
beforeEach(async(() => {
TestBed.configureTestingModule({

mechtelm
committed
declarations: [ PrivacyComponent ],
imports: [
AppRoutingModule,
IqbComponentsModule
],

mechtelm
committed

Martin Mechtel
committed
})
.compileComponents();
}));
beforeEach(() => {

mechtelm
committed
fixture = TestBed.createComponent(PrivacyComponent);

Martin Mechtel
committed
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});