Maailmantutkija

Kasvatuskirja uteliaalle mielelle

This directory contains 3 comprehensive test levels for testing the revised components.

Quick Loading

Easiest way: Open ../load-test-levels.html in your browser and click the buttons!

The loader page provides:

Test Levels

1. comprehensive-test-level.json

Best to start with this one!

2. edge-cases-test-level.json

3. inference-chain-test-level.json

Manual Loading

If you prefer to load manually:

  1. Open editor.html
  2. Open browser DevTools (F12) → Console
  3. Paste and execute:
// Fetch and load a test level
fetch('levels/comprehensive-test-level.json')
  .then(r => r.json())
  .then(level => {
    const levels = JSON.parse(localStorage.getItem('bayesianFactoryLevels') || '[]');
    levels.push(level);
    localStorage.setItem('bayesianFactoryLevels', JSON.stringify(levels));
    alert('Level loaded! Reload the page.');
  });
  1. Reload page
  2. Click “Load Level” button in editor
  3. Select test level from list

Testing

See ../TESTING_CHECKLIST.md for systematic testing procedures.

See ../QUICK_START_TESTING.md for 15-minute quick test guide.