We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55d4a44 commit ea3ea65Copy full SHA for ea3ea65
1 file changed
tests/test_agent_config_consistency.py
@@ -248,11 +248,9 @@ def test_trae_in_extension_registrar(self):
248
"""Extension command registrar should include trae using .trae/rules and markdown, if present."""
249
cfg = CommandRegistrar.AGENT_CONFIGS
250
251
- trae_cfg = cfg.get("trae")
252
- if trae_cfg is None:
253
- # Trae is not yet wired into the extension registrar; tolerate absence for now.
254
- return
255
-
+ assert "trae" in cfg
+ trae_cfg = cfg["trae"]
+
256
assert trae_cfg["dir"] == ".trae/rules"
257
assert trae_cfg["format"] == "markdown"
258
assert trae_cfg["args"] == "$ARGUMENTS"
0 commit comments