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

@@ -26,40 +26,40 @@ describe('FormatSpacePipe', () => {
});
it('should replace the white space with an underscore by default', () => {
let result = pipe.transform('FAKE TEST');
const result = pipe.transform('FAKE TEST');
expect(result).toBe('fake_test');
});
it('should replace all the white spaces with an underscore by default', () => {
let result = pipe.transform('FAKE TEST CHECK ');
const result = pipe.transform('FAKE TEST CHECK ');
expect(result).toBe('fake_test_check');
});
it('should trim the space at the end of the string and replace the ones in the middle', () => {
let result = pipe.transform(' FAKE TEST CHECK ');
const result = pipe.transform(' FAKE TEST CHECK ');
expect(result).toBe('fake_test_check');
});
it('should return a lower case string by default', () => {
const testString = 'FAKE_TEST_LOWERCASE';
let result = pipe.transform(testString);
const result = pipe.transform(testString);
expect(result).toBe(testString.toLocaleLowerCase());
});
it('should replace the empty space with the character given', () => {
const testString = 'FAKE TEST LOWERCASE';
let result = pipe.transform(testString, '+');
const result = pipe.transform(testString, '+');
expect(result).toBe('fake+test+lowercase');
});
it('should leave the string uppercase if explicitly set', () => {
const testString = 'FAKE TEST LOWERCASE';
let result = pipe.transform(testString, '-', false);
const result = pipe.transform(testString, '-', false);
expect(result).toBe('FAKE-TEST-LOWERCASE');
});
it('should return an empty string when input is null', () => {
let result = pipe.transform(null);
const result = pipe.transform(null);
expect(result).toBe('');
});
});