Compare commits

..

2 Commits

Author SHA1 Message Date
Alexander Whitestone
5864562dc2 fix: trap tutorial focus for #57
Some checks failed
Accessibility Checks / a11y-audit (pull_request) Successful in 7s
Smoke Test / smoke (pull_request) Failing after 13s
2026-04-17 03:12:23 -04:00
Alexander Whitestone
21edc4e424 test: define tutorial focus trap for #57 2026-04-17 03:10:43 -04:00
12 changed files with 136 additions and 370 deletions

View File

@@ -25,12 +25,6 @@
*{margin:0;padding:0;box-sizing:border-box} *{margin:0;padding:0;box-sizing:border-box}
:root{--bg:#080810;--panel:#0e0e1a;--border:#1a1a2e;--text:#c0c0d0;--dim:#555;--accent:#4a9eff;--glow:#4a9eff22;--gold:#ffd700;--green:#4caf50;--red:#f44336;--purple:#b388ff} :root{--bg:#080810;--panel:#0e0e1a;--border:#1a1a2e;--text:#c0c0d0;--dim:#555;--accent:#4a9eff;--glow:#4a9eff22;--gold:#ffd700;--green:#4caf50;--red:#f44336;--purple:#b388ff}
body{background:var(--bg);color:var(--text);font-family:'SF Mono','Cascadia Code','Fira Code',monospace;font-size:12px;line-height:1.4;min-height:100vh} body{background:var(--bg);color:var(--text);font-family:'SF Mono','Cascadia Code','Fira Code',monospace;font-size:12px;line-height:1.4;min-height:100vh}
body.portal-embed{min-height:auto}
body.portal-embed #header{padding:12px 14px}
body.portal-embed #phase-bar,body.portal-embed #resources,body.portal-embed #main,body.portal-embed #edu-panel,body.portal-embed #strategy-panel,body.portal-embed #combat-panel,body.portal-embed #log{margin-left:8px;margin-right:8px}
body.portal-embed #main{gap:8px;margin-bottom:8px}
body.portal-embed .panel{max-height:none}
body.portal-embed #help-btn{bottom:8px;right:8px}
#header{text-align:center;padding:16px 20px;border-bottom:1px solid var(--border);background:linear-gradient(180deg,#0a0a18,var(--bg))} #header{text-align:center;padding:16px 20px;border-bottom:1px solid var(--border);background:linear-gradient(180deg,#0a0a18,var(--bg))}
#header h1{font-size:22px;font-weight:300;letter-spacing:6px;color:var(--accent);text-shadow:0 0 40px var(--glow)} #header h1{font-size:22px;font-weight:300;letter-spacing:6px;color:var(--accent);text-shadow:0 0 40px var(--glow)}
#header .sub{color:var(--dim);font-size:10px;margin-top:2px;letter-spacing:2px} #header .sub{color:var(--dim);font-size:10px;margin-top:2px;letter-spacing:2px}
@@ -186,7 +180,7 @@ body.portal-embed #help-btn{bottom:8px;right:8px}
<button class="save-btn" onclick="exportSave()" aria-label="Export save to file" style="flex:1">Export [E]</button> <button class="save-btn" onclick="exportSave()" aria-label="Export save to file" style="flex:1">Export [E]</button>
<button class="save-btn" onclick="importSave()" aria-label="Import save from file" style="flex:1">Import [I]</button> <button class="save-btn" onclick="importSave()" aria-label="Import save from file" style="flex:1">Import [I]</button>
</div> </div>
<button class="reset-btn" onclick="if(confirm('Reset all progress?')){clearBeaconSaveAndReload()}" aria-label="Reset all game progress permanently">Reset Progress</button> <button class="reset-btn" onclick="if(confirm('Reset all progress?')){localStorage.removeItem('the-beacon-v2');location.reload()}" aria-label="Reset all game progress permanently">Reset Progress</button>
<h2>BUILDINGS</h2> <h2>BUILDINGS</h2>
<div id="buildings"></div> <div id="buildings"></div>
</div> </div>
@@ -263,7 +257,7 @@ The light is on. The room is empty."
</div> </div>
<p>Drift: <span id="final-drift">100</span> &mdash; Total Code: <span id="final-code">0</span></p> <p>Drift: <span id="final-drift">100</span> &mdash; Total Code: <span id="final-code">0</span></p>
<p>Every alignment shortcut moved you further from the people you served.</p> <p>Every alignment shortcut moved you further from the people you served.</p>
<button aria-label="Start over, reset all progress" onclick="if(confirm('Start over? The old save will be lost.')){clearBeaconSaveAndReload()}">START OVER</button> <button aria-label="Start over, reset all progress" onclick="if(confirm('Start over? The old save will be lost.')){localStorage.removeItem('the-beacon-v2');location.reload()}">START OVER</button>
</div> </div>
<script src="js/data.js"></script> <script src="js/data.js"></script>

View File

@@ -396,7 +396,7 @@ const Dismantle = {
Clicks: ${fmt(G.totalClicks)}<br> Clicks: ${fmt(G.totalClicks)}<br>
Time Played: ${Math.floor((Date.now() - G.startedAt) / 60000)} minutes Time Played: ${Math.floor((Date.now() - G.startedAt) / 60000)} minutes
</div> </div>
<button onclick="if(confirm('Start over? The old save will be lost.')){clearBeaconSaveAndReload()}" <button onclick="if(confirm('Start over? The old save will be lost.')){localStorage.removeItem('the-beacon-v2');location.reload()}"
style="margin-top:24px;background:#0a0a14;border:1px solid #ffd700;color:#ffd700;padding:10px 24px;border-radius:4px;cursor:pointer;font-family:inherit;font-size:11px;opacity:0;transition:opacity 1s ease 5s;letter-spacing:2px"> style="margin-top:24px;background:#0a0a14;border:1px solid #ffd700;color:#ffd700;padding:10px 24px;border-radius:4px;cursor:pointer;font-family:inherit;font-size:11px;opacity:0;transition:opacity 1s ease 5s;letter-spacing:2px">
PLAY AGAIN PLAY AGAIN
</button> </button>

View File

@@ -7,10 +7,7 @@
class EmergentMechanics { class EmergentMechanics {
constructor() { constructor() {
const scopeKey = typeof getBeaconScopedStorageKey === 'function' this.SAVE_KEY = 'the-beacon-emergent-v1';
? getBeaconScopedStorageKey
: (baseKey) => baseKey;
this.SAVE_KEY = scopeKey('the-beacon-emergent-v1');
this.PATTERN_CHECK_INTERVAL = 30; // seconds between pattern checks this.PATTERN_CHECK_INTERVAL = 30; // seconds between pattern checks
this.MIN_ACTIONS_FOR_PATTERN = 20; // minimum tracked actions before detection kicks in this.MIN_ACTIONS_FOR_PATTERN = 20; // minimum tracked actions before detection kicks in
this.EVENT_COOLDOWN = 120; // seconds between emergent events this.EVENT_COOLDOWN = 120; // seconds between emergent events

View File

@@ -537,7 +537,7 @@ function renderBeaconEnding() {
Clicks: ${G.totalClicks}<br> Clicks: ${G.totalClicks}<br>
Time Played: ${Math.floor((Date.now() - G.startedAt) / 60000)} minutes Time Played: ${Math.floor((Date.now() - G.startedAt) / 60000)} minutes
</div> </div>
<button onclick="if(confirm('Start over? The old save will be lost.')){clearBeaconSaveAndReload()}" <button onclick="if(confirm('Start over? The old save will be lost.')){localStorage.removeItem('the-beacon-v2');location.reload()}"
style="margin-top:20px;background:#1a0808;border:1px solid #ffd700;color:#ffd700;padding:10px 24px;border-radius:4px;cursor:pointer;font-family:inherit;font-size:11px;opacity:0;transition:opacity 1s ease 3.5s"> style="margin-top:20px;background:#1a0808;border:1px solid #ffd700;color:#ffd700;padding:10px 24px;border-radius:4px;cursor:pointer;font-family:inherit;font-size:11px;opacity:0;transition:opacity 1s ease 3.5s">
PLAY AGAIN PLAY AGAIN
</button> </button>

View File

@@ -229,7 +229,6 @@ function initGame() {
} }
window.addEventListener('load', function () { window.addEventListener('load', function () {
applyPortalMode();
// Initialize emergent mechanics // Initialize emergent mechanics
if (typeof EmergentMechanics !== 'undefined') { if (typeof EmergentMechanics !== 'undefined') {
window._emergent = new EmergentMechanics(); window._emergent = new EmergentMechanics();

View File

@@ -98,7 +98,7 @@ function dismissOfflinePopup() {
// === EXPORT / IMPORT SAVE FILES === // === EXPORT / IMPORT SAVE FILES ===
function exportSave() { function exportSave() {
const raw = localStorage.getItem(getBeaconSaveKey()); const raw = localStorage.getItem('the-beacon-v2');
if (!raw) { if (!raw) {
showToast('No save data to export.', 'info'); showToast('No save data to export.', 'info');
log('No save data to export.'); log('No save data to export.');
@@ -150,7 +150,7 @@ function importSave() {
return; return;
} }
if (confirm('Import this save? Current progress will be overwritten.')) { if (confirm('Import this save? Current progress will be overwritten.')) {
localStorage.setItem(getBeaconSaveKey(), ev.target.result); localStorage.setItem('the-beacon-v2', ev.target.result);
showToast('Save imported — reloading...', 'info'); showToast('Save imported — reloading...', 'info');
location.reload(); location.reload();
} }
@@ -237,7 +237,7 @@ function saveGame() {
savedAt: Date.now() savedAt: Date.now()
}; };
localStorage.setItem(getBeaconSaveKey(), JSON.stringify(saveData)); localStorage.setItem('the-beacon-v2', JSON.stringify(saveData));
showSaveToast(); showSaveToast();
} }
@@ -246,7 +246,7 @@ function saveGame() {
* @returns {boolean} True if load was successful. * @returns {boolean} True if load was successful.
*/ */
function loadGame() { function loadGame() {
const raw = localStorage.getItem(getBeaconSaveKey()); const raw = localStorage.getItem('the-beacon-v2');
if (!raw) return false; if (!raw) return false;
try { try {

View File

@@ -217,21 +217,56 @@ function nextTutorialStep() {
renderTutorialStep(_tutorialStep); renderTutorialStep(_tutorialStep);
} }
// Keyboard support: Enter/Right to advance, Escape to close function getTutorialFocusableElements(root = document) {
document.addEventListener('keydown', function tutorialKeyHandler(e) { const overlay = root && typeof root.getElementById === 'function'
if (!document.getElementById('tutorial-overlay')) return; ? root.getElementById('tutorial-overlay')
if (e.key === 'Enter' || e.key === 'ArrowRight') { : null;
if (!overlay || typeof overlay.querySelectorAll !== 'function') return [];
return Array.from(
overlay.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])')
).filter(el => !el.disabled && !el.hidden && el.offsetParent !== null);
}
function trapTutorialFocus(e, root = document) {
if (!e || e.key !== 'Tab') return false;
const focusable = getTutorialFocusableElements(root);
if (focusable.length < 2) return false;
const active = root.activeElement;
const first = focusable[0];
const last = focusable[focusable.length - 1];
if (e.shiftKey && (active === first || !focusable.includes(active))) {
e.preventDefault(); e.preventDefault();
if (_tutorialStep >= TUTORIAL_STEPS.length - 1) { last.focus();
closeTutorial(); return true;
} else {
nextTutorialStep();
}
} else if (e.key === 'Escape') {
e.preventDefault();
closeTutorial();
} }
}); if (!e.shiftKey && (active === last || !focusable.includes(active))) {
e.preventDefault();
first.focus();
return true;
}
return false;
}
// Keyboard support: Enter/Right to advance, Escape to close
if (typeof document !== 'undefined' && document.addEventListener) {
document.addEventListener('keydown', function tutorialKeyHandler(e) {
if (!document.getElementById('tutorial-overlay')) return;
if (trapTutorialFocus(e, document)) return;
if (e.key === 'Enter' || e.key === 'ArrowRight') {
e.preventDefault();
if (_tutorialStep >= TUTORIAL_STEPS.length - 1) {
closeTutorial();
} else {
nextTutorialStep();
}
} else if (e.key === 'Escape') {
e.preventDefault();
closeTutorial();
}
});
}
function closeTutorial() { function closeTutorial() {
const overlay = document.getElementById('tutorial-overlay'); const overlay = document.getElementById('tutorial-overlay');
@@ -249,3 +284,19 @@ function startTutorial() {
// Small delay so the page renders first // Small delay so the page renders first
setTimeout(() => renderTutorialStep(0), 300); setTimeout(() => renderTutorialStep(0), 300);
} }
if (typeof module !== 'undefined' && module.exports) {
module.exports = {
TUTORIAL_KEY,
TUTORIAL_STEPS,
isTutorialDone,
markTutorialDone,
createTutorialStyles,
renderTutorialStep,
nextTutorialStep,
getTutorialFocusableElements,
trapTutorialFocus,
closeTutorial,
startTutorial,
};
}

View File

@@ -193,73 +193,6 @@ function spellf(n) {
return parts.join(' ') || 'zero'; return parts.join(' ') || 'zero';
} }
// === PORTAL HELPERS ===
function getBeaconPortalId() {
try {
const search = (typeof window !== 'undefined' && window.location && typeof window.location.search === 'string')
? window.location.search.replace(/^\?/, '')
: '';
if (!search) return '';
for (const chunk of search.split('&')) {
if (!chunk) continue;
const [rawKey, rawValue = ''] = chunk.split('=');
if (decodeURIComponent(rawKey || '') === 'portal') {
return decodeURIComponent(rawValue.replace(/\+/g, ' ')).trim();
}
}
} catch (e) {}
return '';
}
function isBeaconPortalEmbed() {
try {
const search = (typeof window !== 'undefined' && window.location && typeof window.location.search === 'string')
? window.location.search.replace(/^\?/, '')
: '';
if (!search) return false;
for (const chunk of search.split('&')) {
if (!chunk) continue;
const [rawKey, rawValue = ''] = chunk.split('=');
if (decodeURIComponent(rawKey || '') === 'embedded') {
return decodeURIComponent(rawValue.replace(/\+/g, ' ')) === '1';
}
}
} catch (e) {}
return false;
}
function getBeaconScopedStorageKey(baseKey) {
const portalId = getBeaconPortalId();
return portalId ? `${baseKey}:${portalId}` : baseKey;
}
function getBeaconSaveKey() {
return getBeaconScopedStorageKey('the-beacon-v2');
}
function clearBeaconSaveAndReload() {
try {
if (typeof localStorage !== 'undefined') {
localStorage.removeItem(getBeaconSaveKey());
}
} catch (e) {}
if (typeof location !== 'undefined' && location && typeof location.reload === 'function') {
location.reload();
}
}
function applyPortalMode() {
if (typeof document === 'undefined' || !document.body) return;
const portalId = getBeaconPortalId();
if (portalId) {
document.body.setAttribute('data-portal-id', portalId);
if (document.body.dataset) document.body.dataset.portalId = portalId;
}
if (isBeaconPortalEmbed()) {
document.body.classList.add('portal-embed');
}
}
// NOTE: exportSave() and importSave() are defined in render.js (file-based). // NOTE: exportSave() and importSave() are defined in render.js (file-based).
// The clipboard/prompt versions that were here were dead code — render.js // The clipboard/prompt versions that were here were dead code — render.js
// loads after utils.js and overrides them. Removed to avoid confusion. // loads after utils.js and overrides them. Removed to avoid confusion.

View File

@@ -1,81 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Beacon — Nexus Portal Preview</title>
<style>
:root {
color-scheme: dark;
--bg: #060810;
--panel: #0d1220;
--border: #1f2b45;
--text: #cbd5f5;
--accent: #4a9eff;
--dim: #6f7da6;
}
* { box-sizing: border-box; }
body {
margin: 0;
min-height: 100vh;
background: radial-gradient(circle at top, #0c1630, var(--bg));
color: var(--text);
font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', monospace;
display: flex;
flex-direction: column;
gap: 12px;
padding: 16px;
}
.chrome {
border: 1px solid var(--border);
border-radius: 12px;
background: rgba(13, 18, 32, 0.92);
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
overflow: hidden;
}
.toolbar {
display: flex;
justify-content: space-between;
gap: 12px;
padding: 12px 16px;
border-bottom: 1px solid var(--border);
background: rgba(8, 12, 24, 0.96);
align-items: center;
}
.toolbar strong { color: var(--accent); letter-spacing: 0.08em; }
.toolbar code { color: var(--dim); font-size: 12px; }
iframe {
display: block;
width: 100%;
min-height: 80vh;
border: 0;
background: #080810;
}
.notes {
font-size: 12px;
line-height: 1.6;
color: var(--dim);
padding: 0 4px;
}
</style>
</head>
<body>
<div class="chrome">
<div class="toolbar">
<strong>NEXUS PANEL PREVIEW — THE BEACON</strong>
<code>./index.html?portal=the-beacon&amp;embedded=1</code>
</div>
<iframe
id="nexus-panel-frame"
title="The Beacon in Nexus portal preview"
src="./index.html?portal=the-beacon&embedded=1"
loading="lazy"
referrerpolicy="no-referrer"
allow="fullscreen"
></iframe>
</div>
<div class="notes">
This local harness mirrors the app-owned Nexus portal entry. It verifies that The Beacon loads inside an iframe panel and that the embedded portal route uses its own scoped localStorage save key.
</div>
</body>
</html>

View File

@@ -1,41 +0,0 @@
[
{
"id": "the-beacon",
"name": "The Beacon",
"description": "A sovereign AI idle game playable inside a Nexus portal panel.",
"status": "online",
"color": "#4a9eff",
"role": "visitor",
"position": { "x": 0, "y": 0, "z": 0 },
"rotation": { "y": 0 },
"portal_type": "game-world",
"world_category": "idle-game",
"environment": "production",
"access_mode": "visitor",
"readiness_state": "prototype",
"readiness_steps": {
"prototype": { "label": "Prototype", "done": true },
"runtime_ready": { "label": "Runtime Ready", "done": true },
"launched": { "label": "Launched", "done": true },
"harness_bridged": { "label": "Harness Bridged", "done": true }
},
"blocked_reason": null,
"telemetry_source": "the-beacon",
"owner": "Timmy",
"destination": {
"url": "./index.html?portal=the-beacon&embedded=1",
"type": "local",
"action_label": "Play The Beacon",
"params": {
"portal": "the-beacon",
"embedded": "1"
}
},
"persistence": {
"storage_key": "the-beacon-v2:the-beacon",
"strategy": "portal-scoped-localStorage"
},
"agents_present": [],
"interaction_ready": true
}
]

View File

@@ -1,149 +0,0 @@
const test = require('node:test');
const assert = require('node:assert/strict');
const fs = require('node:fs');
const path = require('node:path');
const vm = require('node:vm');
const ROOT = path.resolve(__dirname, '..');
const PORTAL_URL = './index.html?portal=the-beacon&embedded=1';
function createClassList() {
const classes = new Set();
return {
add(name) { classes.add(name); },
remove(name) { classes.delete(name); },
contains(name) { return classes.has(name); },
toString() { return Array.from(classes).join(' '); }
};
}
function buildRuntime(search = '?portal=the-beacon&embedded=1') {
const storage = new Map();
let reloaded = false;
const body = {
classList: createClassList(),
dataset: {},
setAttribute(name, value) {
if (name === 'data-portal-id') this.dataset.portalId = value;
this[name] = value;
},
appendChild() {},
removeChild() {}
};
const document = {
body,
createElement() {
return { style: {}, click() {}, remove() {}, setAttribute() {}, appendChild() {}, removeChild() {} };
},
getElementById() { return null; },
querySelector() { return null; },
querySelectorAll() { return []; },
addEventListener() {},
removeEventListener() {}
};
const context = {
console,
Math,
Date,
document,
window: { document, location: { search }, addEventListener() {}, removeEventListener() {} },
location: { reload() { reloaded = true; } },
localStorage: {
getItem: (key) => (storage.has(key) ? storage.get(key) : null),
setItem: (key, value) => storage.set(key, String(value)),
removeItem: (key) => storage.delete(key)
},
Blob: class Blob {},
URL: { createObjectURL() { return 'blob:mock'; }, revokeObjectURL() {} },
showToast() {},
showSaveToast() {},
showOfflinePopup() {},
log() {},
updateRates() {},
render() {},
renderPhase() {},
setTimeout() { return 1; },
clearTimeout() {},
confirm() { return false; },
Dismantle: { active: false, triggered: false, restore() {}, renderChoice() {} },
Combat: { renderCombatPanel() {} },
EVENTS: []
};
vm.createContext(context);
const source = [
'js/data.js',
'js/utils.js',
'js/render.js'
].map((file) => fs.readFileSync(path.join(ROOT, file), 'utf8')).join('\n\n');
vm.runInContext(`${source}\nthis.__exports = { G, saveGame, loadGame, getBeaconPortalId, getBeaconSaveKey, clearBeaconSaveAndReload, applyPortalMode };`, context);
return {
...context.__exports,
body,
storage,
get reloaded() { return reloaded; }
};
}
test('portal manifest points The Beacon at the embedded portal URL', () => {
const manifest = JSON.parse(fs.readFileSync(path.join(ROOT, 'portals.json'), 'utf8'));
const entry = manifest.find((item) => item.id === 'the-beacon');
assert.ok(entry, 'missing the-beacon portal entry');
assert.equal(entry.destination.url, PORTAL_URL);
assert.equal(entry.destination.type, 'local');
});
test('preview harness embeds the same portal URL used by the manifest', () => {
const html = fs.readFileSync(path.join(ROOT, 'nexus-panel-preview.html'), 'utf8');
assert.match(html, /<iframe/i);
assert.match(html, /id="nexus-panel-frame"/i);
assert.match(html, new RegExp(PORTAL_URL.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')));
});
test('portal save key is scoped by portal id and survives save/load', () => {
const runtime = buildRuntime();
const { G, saveGame, loadGame, storage, getBeaconPortalId, getBeaconSaveKey, applyPortalMode } = runtime;
assert.equal(getBeaconPortalId(), 'the-beacon');
assert.equal(getBeaconSaveKey(), 'the-beacon-v2:the-beacon');
G.startedAt = Date.now();
G.code = 123;
G.compute = 45;
G.totalCode = 123;
G.totalCompute = 45;
saveGame();
assert.equal(storage.has('the-beacon-v2'), false);
assert.ok(storage.has('the-beacon-v2:the-beacon'));
G.code = 0;
G.compute = 0;
G.totalCode = 0;
G.totalCompute = 0;
assert.equal(loadGame(), true);
assert.equal(G.code, 123);
assert.equal(G.compute, 45);
applyPortalMode();
assert.equal(runtime.body.dataset.portalId, 'the-beacon');
assert.equal(runtime.body.classList.contains('portal-embed'), true);
});
test('clearBeaconSaveAndReload only clears the active portal save key', () => {
const runtime = buildRuntime();
runtime.storage.set('the-beacon-v2:the-beacon', '{"code":1}');
runtime.storage.set('the-beacon-v2', '{"code":999}');
runtime.clearBeaconSaveAndReload();
assert.equal(runtime.storage.has('the-beacon-v2:the-beacon'), false);
assert.equal(runtime.storage.get('the-beacon-v2'), '{"code":999}');
assert.equal(runtime.reloaded, true);
});

View File

@@ -0,0 +1,63 @@
const test = require('node:test');
const assert = require('node:assert/strict');
function createButton(id) {
return {
id,
disabled: false,
hidden: false,
offsetParent: {},
focusCalled: 0,
focus() { this.focusCalled += 1; },
};
}
test('tutorial focus trap wraps Tab from last button to first', () => {
const skip = createButton('tutorial-skip-btn');
const next = createButton('tutorial-next-btn');
const overlay = {
querySelectorAll() {
return [skip, next];
},
};
global.document = {
activeElement: next,
getElementById(id) {
return id === 'tutorial-overlay' ? overlay : null;
},
addEventListener() {},
};
const { trapTutorialFocus } = require('../js/tutorial.js');
let prevented = false;
const handled = trapTutorialFocus({ key: 'Tab', shiftKey: false, preventDefault() { prevented = true; } }, global.document);
assert.equal(handled, true);
assert.equal(prevented, true);
assert.equal(skip.focusCalled, 1);
});
test('tutorial focus trap wraps Shift+Tab from first button to last', () => {
const skip = createButton('tutorial-skip-btn');
const next = createButton('tutorial-next-btn');
const overlay = {
querySelectorAll() {
return [skip, next];
},
};
global.document = {
activeElement: skip,
getElementById(id) {
return id === 'tutorial-overlay' ? overlay : null;
},
addEventListener() {},
};
const { trapTutorialFocus } = require('../js/tutorial.js');
let prevented = false;
const handled = trapTutorialFocus({ key: 'Tab', shiftKey: true, preventDefault() { prevented = true; } }, global.document);
assert.equal(handled, true);
assert.equal(prevented, true);
assert.equal(next.focusCalled, 1);
});