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

@@ -68,7 +68,7 @@ export const kiroProfile = createProfile({
fileMap: {
// Override specific mappings - the base profile will create:
// 'rules/cursor_rules.mdc': 'kiro_rules.md'
// 'rules/dev_workflow.mdc': 'dev_workflow.md'
// 'rules/dev_workflow.mdc': 'dev_workflow.md'
// 'rules/self_improve.mdc': 'self_improve.md'
// 'rules/taskmaster.mdc': 'taskmaster.md'
// We can add additional custom mappings here if needed

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'
});
});
});
});