Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 4311670

Browse files
test(aider): improve tmux script formatting
1 parent de197d4 commit 4311670

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aider/main.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ describe("aider", async () => {
7474
// Instead of running the script, just verify the script content
7575
// to ensure the tmux parameter is being properly applied
7676
const instance = findResourceInstance(state, "coder_script");
77-
77+
7878
// Check for the correct tmux condition with the interpolated value
7979
expect(instance.script.includes('if [ "true" = "true" ]')).toBe(true);
80-
80+
8181
// Also check for a unique string only present when tmux is used in the script
82-
expect(instance.script.includes('tmux new-session -d -s')).toBe(true);
82+
expect(instance.script.includes("tmux new-session -d -s")).toBe(true);
8383
});
8484

8585
it("configures task reporting when enabled", async () => {

0 commit comments

Comments
 (0)