fix(lint): resolve prettier formatting and lint errors from CI run

This commit is contained in:
Johannes Millan 2026-03-24 18:08:30 +01:00
parent 3d45f26b56
commit c8ac3feda2
10 changed files with 21 additions and 13 deletions

View file

@ -87,7 +87,6 @@ test.describe('@archive-import Archive Import Persistence', () => {
await expect(page).toHaveURL(/.*tag.*TODAY.*tasks/);
console.log('[Archive Import Test] Import completed');
// Step 2: Export immediately to verify archive is present
console.log('[Archive Import Test] Step 2: Exporting immediately after import...');
await page.waitForTimeout(2000); // Wait for IndexedDB writes

View file

@ -60,7 +60,6 @@ test.describe.serial('Plugin Iframe', () => {
if (!pluginInMenu) {
throw new Error('API Test Plugin not found in menu after enabling');
}
});
test('open plugin iframe view', async ({ page }) => {

View file

@ -151,10 +151,15 @@ test.describe('Deadline Reminders', () => {
await expect(page.locator(REMINDER_DIALOG_TASK_1)).toContainText(taskTitle);
// Click "Snooze" to open snooze menu, then "Reschedule until tomorrow"
const snoozeBtn = page.locator(REMINDER_DIALOG).locator('button:has(mat-icon:text("snooze"))').first();
const snoozeBtn = page
.locator(REMINDER_DIALOG)
.locator('button:has(mat-icon:text("snooze"))')
.first();
await snoozeBtn.click();
const rescheduleOption = page.locator('button[mat-menu-item]:has-text("Reschedule for tomorrow")');
const rescheduleOption = page.locator(
'button[mat-menu-item]:has-text("Reschedule for tomorrow")',
);
await rescheduleOption.waitFor({ state: 'visible', timeout: 5000 });
await rescheduleOption.click();