c3f8137 📦 deps(skills): sync superpowers 35e827d 📦 deps(skills): sync superpowers e546ffb 📦 deps(skills): sync superpowers f7f2c57 🔧 chore(ci): use ci-bot identity for superpowers sync commits fa247a7 📦 deps(skills): sync superpowers a97c333 🔧 chore(ci): add resilient upstream fetch fallback for superpowers update 484f9d3 🔧 chore(ci): automate thirdparty superpowers refresh and sync base c19e53e 📝 docs(playbook): refresh guidance and examples 52046b4 📝 docs(prompts): add code-review template and align docs flow 9ac8a4c 📝 docs(typescript): clarify ts and js support boundaries 1f46203 ✨ feat(typescript): add standards docs and sync rewrite coverage 872c1af 🔧 feat(skills): install to agents home git-subtree-dir: docs/standards/playbook git-subtree-split: c3f81371e24d63b603de9b6eb92bf7e4c453a2b4
16 lines
409 B
Python
16 lines
409 B
Python
import unittest
|
||
from pathlib import Path
|
||
|
||
ROOT = Path(__file__).resolve().parents[1]
|
||
README = ROOT / "README.md"
|
||
|
||
|
||
class ReadmeLanguageListsTests(unittest.TestCase):
|
||
def test_rulesets_list_includes_typescript(self):
|
||
text = README.read_text(encoding="utf-8")
|
||
self.assertIn("- `rulesets/typescript/index.md`:TypeScript 核心约定", text)
|
||
|
||
|
||
if __name__ == "__main__":
|
||
unittest.main()
|