chore: fix format
This commit is contained in:
@@ -91,12 +91,18 @@ describe('Kiro Integration', () => {
|
|||||||
expect(fs.mkdirSync).toHaveBeenCalledWith(path.join(tempDir, '.kiro'), {
|
expect(fs.mkdirSync).toHaveBeenCalledWith(path.join(tempDir, '.kiro'), {
|
||||||
recursive: true
|
recursive: true
|
||||||
});
|
});
|
||||||
expect(fs.mkdirSync).toHaveBeenCalledWith(path.join(tempDir, '.kiro', 'settings'), {
|
expect(fs.mkdirSync).toHaveBeenCalledWith(
|
||||||
|
path.join(tempDir, '.kiro', 'settings'),
|
||||||
|
{
|
||||||
recursive: true
|
recursive: true
|
||||||
});
|
}
|
||||||
expect(fs.mkdirSync).toHaveBeenCalledWith(path.join(tempDir, '.kiro', 'steering'), {
|
);
|
||||||
|
expect(fs.mkdirSync).toHaveBeenCalledWith(
|
||||||
|
path.join(tempDir, '.kiro', 'steering'),
|
||||||
|
{
|
||||||
recursive: true
|
recursive: true
|
||||||
});
|
}
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('creates Kiro mcp.json with mcpServers format', () => {
|
test('creates Kiro mcp.json with mcpServers format', () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user