You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TS compiles export * from "./util", __createBinding defines each re-exported name as an accessor descriptor (getter-only, no setter, writable is N/A on accessor descriptors)
15
+
// Require the leaf module directly so spyOn works — cliCore re-exports via __createBinding getter chains
16
+
// (index → util/index → ai-skills), making the property non-writable at the top level.
17
+
// The leaf module's exports object uses plain assignments, which are writable and spyable.
0 commit comments