The `NO_ERRORS_SCHEMA` schema can be used to ignore errors related to unknown elements or properties, but since it suppresses these errors it may also hide real problems in a template. This commit updates the `NO_ERRORS_SCHEMA` docs to mention that. Closes #39454. PR Close #42327
27 lines
876 B
TypeScript
27 lines
876 B
TypeScript
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { AboutComponent } from './about.component';
|
|
import { HighlightDirective } from '../shared/highlight.directive';
|
|
|
|
let fixture: ComponentFixture<AboutComponent>;
|
|
|
|
describe('AboutComponent (highlightDirective)', () => {
|
|
// #docregion tests
|
|
beforeEach(() => {
|
|
fixture = TestBed.configureTestingModule({
|
|
declarations: [ AboutComponent, HighlightDirective ],
|
|
schemas: [ CUSTOM_ELEMENTS_SCHEMA ]
|
|
})
|
|
.createComponent(AboutComponent);
|
|
fixture.detectChanges(); // initial binding
|
|
});
|
|
|
|
it('should have skyblue <h2>', () => {
|
|
const h2: HTMLElement = fixture.nativeElement.querySelector('h2');
|
|
const bgColor = h2.style.backgroundColor;
|
|
expect(bgColor).toBe('skyblue');
|
|
});
|
|
// #enddocregion tests
|
|
});
|