enable prefer-const rule for tslint, fix issues (#4409)

* enable prefer-const rule for tslint, fix issues

* Update content-node-selector.component.spec.ts

* Update content-node-selector.component.spec.ts

* fix const

* fix lint issues

* update tests

* update tests

* update tests

* fix code

* fix page class
This commit is contained in:
Denys Vuika
2019-03-25 12:19:33 +00:00
committed by Eugenio Romano
parent 26c5982a1a
commit a7a48e8b2b
581 changed files with 5435 additions and 5402 deletions

View File

@@ -20,19 +20,19 @@ import { ObjectUtils } from './object-utils';
describe('ObjectUtils', () => {
it('should get top level property value', () => {
let obj = {
const obj = {
id: 1
};
expect(ObjectUtils.getValue(obj, 'id')).toBe(1);
});
it('should not get top level property value', () => {
let obj = {};
const obj = {};
expect(ObjectUtils.getValue(obj, 'missing')).toBeUndefined();
});
it('should get nested property value', () => {
let obj = {
const obj = {
name: {
firstName: 'John',
lastName: 'Doe'
@@ -43,7 +43,7 @@ describe('ObjectUtils', () => {
});
it('should not get nested property value', () => {
let obj = {};
const obj = {};
expect(ObjectUtils.getValue(obj, 'some.missing.property')).toBeUndefined();
});