Skip to content

Commit 53cbf33

Browse files
committed
Corrected the tests since we added .yaml to the system prompts
1 parent a0f0051 commit 53cbf33

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/test.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,11 @@ describe("VibeCoder Full Installation Process Tests", function () {
8989

9090
// Verify specific files in `.roo` directory
9191
const requiredFiles = [
92-
"system-prompt-architect",
93-
"system-prompt-ask",
94-
"system-prompt-code",
95-
"system-prompt-debug",
96-
"system-prompt-test",
92+
"system-prompt-architect.yaml",
93+
"system-prompt-ask.yaml",
94+
"system-prompt-code.yaml",
95+
"system-prompt-debug.yaml",
96+
"system-prompt-test.yaml",
9797
];
9898
for (const file of requiredFiles) {
9999
const filePath = path.join(rooDirPath, file);
@@ -121,11 +121,11 @@ describe("VibeCoder Full Installation Process Tests", function () {
121121
it("should create all expected files after installation", function () {
122122
// Correct expected file paths
123123
const expectedFiles = [
124-
path.join(".roo", "system-prompt-architect"),
125-
path.join(".roo", "system-prompt-ask"),
126-
path.join(".roo", "system-prompt-code"),
127-
path.join(".roo", "system-prompt-debug"),
128-
path.join(".roo", "system-prompt-test"),
124+
path.join(".roo", "system-prompt-architect.yaml"),
125+
path.join(".roo", "system-prompt-ask.yaml"),
126+
path.join(".roo", "system-prompt-code.yaml"),
127+
path.join(".roo", "system-prompt-debug.yaml"),
128+
path.join(".roo", "system-prompt-test.yaml"),
129129
".roomodes",
130130
".rooignore",
131131
];

0 commit comments

Comments
 (0)