[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -111,7 +111,7 @@ describe('CardViewBoolItemComponent', () => {
expect(value.nativeElement.checked).toBe(true);
});
it('should render unticked checkbox if property value is false', () => {
it('should render un-ticked checkbox if property value is false', () => {
component.property.value = false;
fixture.detectChanges();
@@ -120,7 +120,7 @@ describe('CardViewBoolItemComponent', () => {
expect(value.nativeElement.checked).toBe(false);
});
it('should render unticked checkbox if property value is not set but default is false and editable', () => {
it('should render un-ticked checkbox if property value is not set but default is false and editable', () => {
component.editable = true;
component.property.editable = true;
component.property.value = undefined;