Skip to content

Commit e7ad423

Browse files
committed
chore(lint): cleanup lint errors
1 parent 0982d8a commit e7ad423

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

projects/igniteui-angular/src/lib/date-range-picker/date-range-picker.component.spec.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,6 @@ describe('IgxDateRangePicker', () => {
719719
doneBtn = document.getElementsByClassName(CSS_CLASS_DIALOG_BUTTON)[1];
720720
cancelBtn = document.getElementsByClassName(CSS_CLASS_DIALOG_BUTTON)[0];
721721
expect(doneBtn.textContent.trim()).toEqual('Close');
722-
console.log(cancelBtn.textContent.trim());
723722
}));
724723

725724
it('should emit open/close events - open/close methods', fakeAsync(() => {
@@ -1719,8 +1718,6 @@ describe('IgxDateRangePicker', () => {
17191718
const predefinedArea = document.querySelector('igx-predefined-ranges-area');
17201719
const chips = document.querySelectorAll('igx-chip');
17211720

1722-
console.log(predefinedArea);
1723-
17241721
expect(predefinedArea).toBeNull();
17251722
expect(chips.length).toEqual(0);
17261723

projects/igniteui-angular/src/lib/performance.service.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-console */
12
import { inject, Injectable, NgZone, isDevMode } from '@angular/core';
23

34

projects/igniteui-angular/src/lib/services/overlay/overlay.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4502,7 +4502,7 @@ describe('igxOverlay', () => {
45024502
});
45034503

45044504
@Component({
4505-
selector: `simple - dynamic - component`,
4505+
selector: `test-simple-dynamic-component`,
45064506
template: `<div style='width:100px; height: 100px; background-color: red;'></div>`,
45074507
standalone: true
45084508
})

projects/igniteui-angular/src/lib/test-utils/configure-suite.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const checkLeaksAvailable = typeof window.gc === 'function';
66
const debug = false;
77
function debugLog(...args) {
88
if (debug) {
9+
// eslint-disable-next-line no-console
910
console.log(...args);
1011
}
1112
}

projects/igniteui-angular/src/lib/test-utils/helper-utils.spec.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ export class TestNgZone extends NgZone {
9292
}
9393
}
9494

95+
/* eslint-disable no-console */
9596
// TODO: enable on re-run by selecting enable debug logging
9697
// https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/troubleshooting-workflows/enabling-debug-logging
9798
const shardLogging = false;

0 commit comments

Comments
 (0)