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
@@ -202,5 +202,11 @@ class GoalPatchWorkflowTests(unittest.TestCase):
self.assertIn(["npm", "run", "build", "-w", "@ainative-okr/frontend"], commands)
self.assertIn(["npm", "test", "-w", "@ainative-okr/frontend"], commands)
def test_service_desk_patch_uses_service_desk_manifest_commands(self):
commands = EXECUTOR.verification_commands(["apps/service-desk/src/ticket.js"])
self.assertIn(["node", "--check", "apps/service-desk/src/ticket.js"], commands)
self.assertIn(["node", "--test", "apps/service-desk/test/ticket.test.mjs"], commands)
self.assertNotIn(["npm", "test", "-w", "@ainative-okr/backend"], commands)
if __name__ == "__main__":
unittest.main()