0
我遇到以下問題。Angular 2 fixture不包含單元測試中的組件樣式
這是一個指令的單元測試,指令本身應該簡單地改變其所在元素的height
樣式屬性。我正在使用測試組件作爲此測試的上下文。麻煩的是,無論我做什麼,樣式似乎都是空的。
我設置background-color
明確的成分只是爲了看它是否在另一端的fixture.debugElement
@Component({
template: `
<style>
.test {
background-color: white;
}
</style>
<div class="test" appExpandSidebarToBottom></div>`
})
class TestComponent {
constructor(){}
}
fdescribe('Directive: ExpandSidebarToBottom',() => {
let fixture;
let divWithDirective;
beforeEach(() => {
fixture = TestBed.configureTestingModule({
declarations: [ ExpandSidebarToBottomDirective, TestComponent ]
})
.createComponent(TestComponent);
fixture.detectChanges(); // initial binding
divWithDirective = fixture.debugElement.query(By.css('.test'));
});
it('should...',() => {
console.log(divWithDirective.nativeElement.backgroundColor)
console.log(divWithDirective.styles)
});
});
輸出來,雖然是
LOG: undefined
LOG: Object{}
如果是在定義的樣式零件?