Skip to content
Snippets Groups Projects
privacy.component.spec.ts 828 B
Newer Older
  • Learn to ignore specific revisions
  • import { async, ComponentFixture, TestBed } from '@angular/core/testing';
    
    
    import { PrivacyComponent } from './privacy.component';
    
    import {AppRoutingModule} from "../../app-routing.module";
    
    import {IqbComponentsModule} from "iqb-components";
    
    describe('PrivacyComponent', () => {
      let component: PrivacyComponent;
      let fixture: ComponentFixture<PrivacyComponent>;
    
    
      beforeEach(async(() => {
        TestBed.configureTestingModule({
    
          imports: [
            AppRoutingModule,
            IqbComponentsModule
          ],
    
        fixture = TestBed.createComponent(PrivacyComponent);
    
        component = fixture.componentInstance;
        fixture.detectChanges();
      });
    
      it('should create', () => {
        expect(component).toBeTruthy();
      });
    });