Created
January 22, 2018 04:25
-
-
Save PavanKu/7caf253fcddef4eb17d9b32c06bbdda5 to your computer and use it in GitHub Desktop.
Unit Testing of Simple Component in AngularJS V5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; | |
import { HeaderComponent } from './header.component'; | |
import { DebugElement } from '@angular/core'; | |
import { By } from '@angular/platform-browser'; | |
describe('HeaderComponent', () => { | |
let component: HeaderComponent; | |
let fixture: ComponentFixture<HeaderComponent>; | |
beforeEach(async(() => { | |
TestBed.configureTestingModule({ | |
declarations: [ HeaderComponent ] | |
}) | |
.compileComponents(); | |
})); | |
beforeEach(() => { | |
fixture = TestBed.createComponent(HeaderComponent); | |
component = fixture.componentInstance; | |
fixture.detectChanges(); | |
}); | |
it('should create', () => { | |
expect(component).toBeTruthy(); | |
}); | |
it('should have title', () => { | |
let de:DebugElement = fixture.debugElement.query(By.css('h2')); | |
let el = de.nativeElement; | |
expect(el.textContent).toContain(component.title); | |
}); | |
it('should display a differnet test title', () => { | |
const de:DebugElement = fixture.debugElement.query(By.css('h2')); | |
const el = de.nativeElement; | |
const testTitle = 'Test Address Book' | |
component.title = testTitle; | |
fixture.detectChanges() | |
expect(el.textContent).toContain(testTitle); | |
}); | |
it('should display an icon', () => { | |
const de:DebugElement = fixture.debugElement.query(By.css('h2>i')); | |
const el = de.nativeElement; | |
expect(el).toBeTruthy(); | |
expect(el.className).toContain('icon'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment