dry-wash-pl/__mocks__/brojs-cli-mock.ts
RustamRu 909cbd0321 feat: Add new features and mock data for order and configuration testing
- Updated brojs-cli mock to include additional feature flags
- Modified Jest preset to exclude more files from coverage
- Updated snapshot tests for masters, order create, order view, and orders list pages
- Added new UI elements and interactions in various components
- Improved test coverage configuration
2025-03-12 01:49:44 +03:00

21 lines
564 B
TypeScript

import { jest } from '@jest/globals';
jest.mock('@brojs/cli', () => ({
getConfigValue: jest.fn(() => '/api'),
getFeatures: jest.fn(() => ({
['order-view-status-polling']: { value: '3000' },
['car-img-upload']: { value: 'true' },
['order-cost']: { value: '1000' },
})),
getNavigationValue: jest.fn((navKey: string) => {
switch (navKey) {
case 'dry-wash.main':
return '/dry-wash';
case 'dry-wash.order.create':
return '/order';
case 'dry-wash.order.view':
return '/order/:orderId';
}
}),
}));