chore: fix format

This commit is contained in:
Ralph Khreish
2025-07-18 00:30:35 +03:00
parent f17f01fddf
commit b991c2b48b
3 changed files with 15 additions and 9 deletions

View File

@@ -91,12 +91,18 @@ describe('Kiro Integration', () => {
expect(fs.mkdirSync).toHaveBeenCalledWith(path.join(tempDir, '.kiro'), {
recursive: true
});
expect(fs.mkdirSync).toHaveBeenCalledWith(path.join(tempDir, '.kiro', 'settings'), {
recursive: true
});
expect(fs.mkdirSync).toHaveBeenCalledWith(path.join(tempDir, '.kiro', 'steering'), {
recursive: true
});
expect(fs.mkdirSync).toHaveBeenCalledWith(
path.join(tempDir, '.kiro', 'settings'),
{
recursive: true
}
);
expect(fs.mkdirSync).toHaveBeenCalledWith(
path.join(tempDir, '.kiro', 'steering'),
{
recursive: true
}
);
});
test('creates Kiro mcp.json with mcpServers format', () => {
@@ -132,4 +138,4 @@ describe('Kiro Integration', () => {
'# Task Master\n\nTask Master integration instructions.'
);
});
});
});

View File

@@ -212,4 +212,4 @@ Use the .mdc extension for all rule files.`;
'rules/taskmaster.mdc': 'taskmaster.md'
});
});
});
});