test(health): pin F4 phase metadata

This commit is contained in:
2026-09-08 16:14:10 -03:00
parent 0d5bdd25ce
commit 7875fea3ca
@@ -0,0 +1,8 @@
import assert from 'node:assert/strict';
import test from 'node:test';
import { API_PHASE, API_VERSION } from '../../src/version';
test('F4 health metadata reports the deployed phase without changing the release version', () => {
assert.equal(API_PHASE, 'F4');
assert.equal(API_VERSION, '0.25.0-1');
});