feat(runner): unify plugin execution across agents and event processors

This commit is contained in:
RockChinQ
2026-09-10 18:04:38 +08:00
parent 8903a40c41
commit f24a7c9bb2
223 changed files with 4091 additions and 3068 deletions
+2 -2
View File
@@ -40,10 +40,10 @@ test('hides the entire workspace switcher slot for a singleton local workspace',
);
});
test('keeps bot cards at the same vertical spacing as knowledge-base cards', () => {
test('keeps compact bot forms vertically spaced while detail forms support columns', () => {
assert.match(
botFormSource,
/<fieldset\s+className="[^"]*\bspace-y-6\b[^"]*"\s+disabled=\{isLoading\}/,
/<fieldset[\s\S]*?'space-y-6'[\s\S]*?disabled=\{isLoading\}/,
);
assert.match(kbFormSource, /<form[\s\S]*?className="space-y-6"/);
});