/* 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 { BrowserCodeNameComponent } from './browser-code-name.component'; describe('BrowserCodeNameComponent', () => { let component: BrowserCodeNameComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ BrowserCodeNameComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(BrowserCodeNameComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });