Fix missed tracking comment to be false
This commit is contained in:
parent
02c804a6be
commit
a53ce607e4
@ -37,6 +37,6 @@ export const agentMode: Mode = {
|
|||||||
},
|
},
|
||||||
|
|
||||||
shouldCreateTrackingComment() {
|
shouldCreateTrackingComment() {
|
||||||
return true;
|
return false;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@ -19,7 +19,7 @@ describe("Agent Mode", () => {
|
|||||||
expect(agentMode.description).toBe(
|
expect(agentMode.description).toBe(
|
||||||
"Automation mode that always runs without trigger checking",
|
"Automation mode that always runs without trigger checking",
|
||||||
);
|
);
|
||||||
expect(agentMode.shouldCreateTrackingComment()).toBe(true);
|
expect(agentMode.shouldCreateTrackingComment()).toBe(false);
|
||||||
|
|
||||||
// Tool methods return empty arrays
|
// Tool methods return empty arrays
|
||||||
expect(agentMode.getAllowedTools()).toEqual([]);
|
expect(agentMode.getAllowedTools()).toEqual([]);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user