diff --git a/test-apps/android-test/src/index.ts b/test-apps/android-test/src/index.ts index 0cb5fec..2af8cb1 100644 --- a/test-apps/android-test/src/index.ts +++ b/test-apps/android-test/src/index.ts @@ -1433,6 +1433,7 @@ class TimeSafariAndroidTestApp { if (result.reminders && result.reminders.length > 0) { this.errorDisplay.showSuccess(`Found ${result.reminders.length} scheduled reminders`); + // eslint-disable-next-line no-console console.table(result.reminders); } else { this.errorDisplay.showInfo('No scheduled reminders found'); diff --git a/test-apps/electron-test/src/index.ts b/test-apps/electron-test/src/index.ts index e3810ef..c2e365a 100644 --- a/test-apps/electron-test/src/index.ts +++ b/test-apps/electron-test/src/index.ts @@ -1023,6 +1023,7 @@ class TimeSafariElectronTestApp { if (result.reminders && result.reminders.length > 0) { this.errorDisplay.showSuccess(`Found ${result.reminders.length} scheduled reminders`); + // eslint-disable-next-line no-console console.table(result.reminders); } else { this.errorDisplay.showInfo('No scheduled reminders found'); diff --git a/test-apps/ios-test/src/index.ts b/test-apps/ios-test/src/index.ts index 56e3c1e..ef83139 100644 --- a/test-apps/ios-test/src/index.ts +++ b/test-apps/ios-test/src/index.ts @@ -569,7 +569,7 @@ class TimeSafariIOSTestApp { } } - private async testEndorserAPI() { + private async testEndorserAPI(): Promise { try { this.log('Testing Endorser.ch API integration on iOS...'); const config = this.configLoader.getConfig(); @@ -1273,6 +1273,7 @@ class TimeSafariIOSTestApp { if (result.reminders && result.reminders.length > 0) { this.errorDisplay.showSuccess(`Found ${result.reminders.length} scheduled reminders`); + // eslint-disable-next-line no-console console.table(result.reminders); } else { this.errorDisplay.showInfo('No scheduled reminders found');