- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Cambios en backend y frontend Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
912 B
TypeScript
49 lines
912 B
TypeScript
/**
|
|
* Test Data Fixtures - MiChangarrito E2E Tests
|
|
*/
|
|
|
|
export const TEST_USER = {
|
|
phone: '5512345678',
|
|
pin: '1234',
|
|
name: 'Usuario Test',
|
|
businessName: 'Tienda Test',
|
|
};
|
|
|
|
export const TEST_PRODUCT = {
|
|
name: 'Coca-Cola 600ml',
|
|
sku: 'CC600',
|
|
barcode: '7501055300000',
|
|
price: 18.00,
|
|
cost: 12.00,
|
|
stock: 50,
|
|
category: 'Bebidas',
|
|
};
|
|
|
|
export const TEST_CUSTOMER = {
|
|
name: 'Juan Perez',
|
|
phone: '5598765432',
|
|
email: 'juan@test.com',
|
|
creditLimit: 500,
|
|
};
|
|
|
|
export const TEST_ORDER = {
|
|
items: [
|
|
{ productId: '1', quantity: 2, price: 18.00 },
|
|
{ productId: '2', quantity: 1, price: 25.00 },
|
|
],
|
|
total: 61.00,
|
|
paymentMethod: 'cash',
|
|
};
|
|
|
|
export const ROUTES = {
|
|
login: '/login',
|
|
register: '/register',
|
|
dashboard: '/dashboard',
|
|
products: '/products',
|
|
orders: '/orders',
|
|
customers: '/customers',
|
|
fiado: '/fiado',
|
|
inventory: '/inventory',
|
|
settings: '/settings',
|
|
};
|