38980-vm/app-9w9pd00g5j41/verify-rules.js
2026-03-04 18:25:09 +00:00

12 lines
529 B
JavaScript

// Verify that the rules are correctly exported
import { DAY_RULES, MAX_PLACES_PER_DAY, MIN_PLACES_PER_DAY } from './src/config/cappadocia-rules.ts';
console.log('DAY_RULES:', DAY_RULES);
console.log('MAX_PLACES_PER_DAY:', MAX_PLACES_PER_DAY);
console.log('MIN_PLACES_PER_DAY:', MIN_PLACES_PER_DAY);
// Verify the values
console.log('\n✅ Verification:');
console.log('max_places should be 10:', MAX_PLACES_PER_DAY === 10 ? 'PASS' : 'FAIL');
console.log('min_places should be 7:', MIN_PLACES_PER_DAY === 7 ? 'PASS' : 'FAIL');