[ADF-1724] Remove all log in favor of log service (#2465)

* remove console log from components

* remove console log from demo shell

* fix visibility issue

* fix error template

* remove console.log from spec

* fix tests

* fix test
This commit is contained in:
Eugenio Romano
2017-10-12 23:14:28 +01:00
committed by GitHub
parent 10bc4b3043
commit a46cf4be64
30 changed files with 138 additions and 259 deletions

View File

@@ -70,7 +70,6 @@ describe('DocumentList', () => {
beforeEach(() => {
eventMock = {
preventDefault: function () {
console.log('mock preventDefault');
}
};
@@ -228,7 +227,6 @@ describe('DocumentList', () => {
it('should not execute action without node provided', () => {
let action = new ContentActionModel();
action.handler = function () {
console.log('mock handler');
};
spyOn(action, 'handler').and.stub();