mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-17 16:37:43 +00:00
fix(lint): resolve prettier formatting and lint errors from CI run
This commit is contained in:
parent
3d45f26b56
commit
c8ac3feda2
10 changed files with 21 additions and 13 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 }) => {
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue