12 lines
529 B
JavaScript
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');
|