change roo boomerang to orchestrator; update tests that don't use modes

This commit is contained in:
Joe Danziger
2025-06-12 01:45:43 -04:00
parent f97e1732f1
commit b7333bbd1a
7 changed files with 25 additions and 62 deletions

View File

@@ -59,7 +59,14 @@ describe('Roo Integration', () => {
fs.mkdirSync(path.join(tempDir, '.roo', 'rules'), { recursive: true });
// Create mode-specific rule directories
const rooModes = ['architect', 'ask', 'boomerang', 'code', 'debug', 'test'];
const rooModes = [
'architect',
'ask',
'orchestrator',
'code',
'debug',
'test'
];
for (const mode of rooModes) {
fs.mkdirSync(path.join(tempDir, '.roo', `rules-${mode}`), {
recursive: true
@@ -102,7 +109,7 @@ describe('Roo Integration', () => {
{ recursive: true }
);
expect(fs.mkdirSync).toHaveBeenCalledWith(
path.join(tempDir, '.roo', 'rules-boomerang'),
path.join(tempDir, '.roo', 'rules-orchestrator'),
{ recursive: true }
);
expect(fs.mkdirSync).toHaveBeenCalledWith(
@@ -133,7 +140,7 @@ describe('Roo Integration', () => {
expect.any(String)
);
expect(fs.writeFileSync).toHaveBeenCalledWith(
path.join(tempDir, '.roo', 'rules-boomerang', 'boomerang-rules'),
path.join(tempDir, '.roo', 'rules-orchestrator', 'orchestrator-rules'),
expect.any(String)
);
expect(fs.writeFileSync).toHaveBeenCalledWith(