/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { CookieBannerComponent } from './cookie-banner.component'; describe('CookieBannerComponent', () => { let component: CookieBannerComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ CookieBannerComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CookieBannerComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });