Skip to content

Commit 360e113

Browse files
committed
fix(container): update oh-my-claude test to match alias ownership change
Test 10.3 expected installLaunchAliases in the feature options, but aliases were moved to setup-aliases.sh. The test now verifies the feature does NOT own aliases and has no autostart — matching the current architecture.
1 parent d3ba54a commit 360e113

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

container/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -294,15 +294,15 @@ function runTests() {
294294
}
295295
if (
296296
omcFeature.options &&
297-
omcFeature.options.installLaunchAliases &&
298-
!omcFeature.options.autostart
297+
!omcFeature.options.autostart &&
298+
!omcFeature.options.installLaunchAliases
299299
) {
300300
console.log(
301-
"✓ Test 10.3: oh-my-claude feature exposes launch helpers instead of autostart",
301+
"✓ Test 10.3: oh-my-claude feature delegates aliases to setup-aliases.sh and has no autostart",
302302
);
303303
} else {
304304
console.log(
305-
"❌ Test 10.3: oh-my-claude feature should use installLaunchAliases and not autostart",
305+
"❌ Test 10.3: oh-my-claude feature should not own aliases (setup-aliases.sh does) and should not autostart",
306306
);
307307
omcFeatureValid = false;
308308
}

0 commit comments

Comments
 (0)