forked from juristr/angular-testing-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
content-projection.component.spec.ts
51 lines (44 loc) · 1.38 KB
/
content-projection.component.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* tslint:disable:no-unused-variable */
import { Component } from '@angular/core';
import { ComponentFixture, TestBed, async } from '@angular/core/testing';
import { By } from '@angular/platform-browser';
import { CollapsiblePanelComponent } from './content-projection.component';
@Component({
selector: 'test',
template: `
<my-collapsible>
<span title>I'm the title</span>
<div body>I'm the body</div>
</my-collapsible>
`
})
class TestComponent {}
describe('ContentProjectionComponent', () => {
let component: TestComponent;
let fixture: ComponentFixture<TestComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [TestComponent, CollapsiblePanelComponent]
});
}));
beforeEach(() => {
fixture = TestBed.createComponent(TestComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
it('should correctly project the title', () => {
expect(
fixture.debugElement.query(By.css('my-collapsible')).query(By.css('h1'))
.nativeElement.innerHTML
).toContain("I'm the title");
});
it('should correctly project the body', () => {
expect(
fixture.debugElement.query(By.css('my-collapsible')).query(By.css('div'))
.nativeElement.innerHTML
).toContain("I'm the body");
});
});