fix template, remove okr, use casan.*

This commit is contained in:
thanhnv
2026-07-18 16:45:31 +07:00
parent 0dfd1742d3
commit 13fae3e6c3
249 changed files with 4881 additions and 5702 deletions
@@ -0,0 +1,7 @@
import assert from 'node:assert/strict';
import test from 'node:test';
import { HealthController } from '../src/health.controller.js';
test('health contract is deterministic', () => {
assert.deepEqual(new HealthController().health(), { status: 'ok', service: '__PROJECT_SLUG__-backend' });
});