before functional changes by Codex

This commit is contained in:
znetsixe
2026-02-19 17:36:44 +01:00
parent 405be33626
commit b5137ba9c2
10 changed files with 1118 additions and 220 deletions

View File

@@ -33,3 +33,12 @@ test('handleInput ignores disallowed source/action combination', async () => {
assert.equal(before, after);
});
test('warmingup is treated as active for prediction updates', () => {
const machine = new Machine(
makeMachineConfig(),
makeStateConfig({ state: { current: 'warmingup' } })
);
assert.equal(machine._isOperationalState(), true);
});