Files
dh-inspeccion-v2/api-v3/test/unit/f4-health-metadata.test.ts
T

9 lines
273 B
TypeScript

import assert from 'node:assert/strict';
import test from 'node:test';
import { API_PHASE, API_VERSION } from '../../src/version';
test('health metadata reports the current F5 release', () => {
assert.equal(API_PHASE, 'F5');
assert.equal(API_VERSION, '0.26.0-1');
});