Я запускаю юнит-тест для углового приложения, я пытаюсь получить доступ к стилю из .css внутри юнит-теста. Я дам вам знать, что я пытался
component.listedIps.length=0;
fixture.detectChanges();
let whitelistipsdiv=fixture.debugElement.query(By.css('.divAllAllowedIPs'));
//unit test for style, test for background-color to be green
expect(whitelistipsdiv.nativeElement.style.backgroundColor).toEqual('green');// to be darkgreen, here it is null
.css file
.divAllAllowedIPs {
background-color: green;
}