fixin
Some checks failed
Deploy to Test Environment / deploy-to-test (push) Failing after 42s

This commit is contained in:
2025-12-28 22:38:26 -08:00
parent f72819e343
commit fd52a79a72
2 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ import { AiDataValidationError } from './processingErrors';
import { logger } from './logger.server';
import type { AIService } from './aiService.server';
import type { PersonalizationRepository } from './db/personalization.db';
import type { FlyerJobData } from './queues.server';
import type { FlyerJobData } from '../types/job-data';
vi.mock('./logger.server', () => ({
logger: {

View File

@@ -6,7 +6,7 @@ import sharp from 'sharp';
import { FlyerFileHandler, ICommandExecutor, IFileSystem } from './flyerFileHandler.server';
import { PdfConversionError, UnsupportedFileTypeError } from './processingErrors';
import { logger } from './logger.server';
import type { FlyerJobData } from './queues.server';
import type { FlyerJobData } from '../types/job-data';
// Mock dependencies
vi.mock('sharp', () => {