mirror of
https://github.com/garrytan/gstack.git
synced 2026-05-07 22:16:52 +02:00
test: update golden baselines + OpenClaw includeSkills tests
Update golden SKILL.md baselines for preamble SPAWNED_SESSION change. Replace staticFiles SOUL.md test with includeSkills validation.
This commit is contained in:
@@ -484,9 +484,17 @@ describe('host config correctness', () => {
|
||||
expect(openclaw.adapter).toContain('openclaw-adapter');
|
||||
});
|
||||
|
||||
test('openclaw has staticFiles for SOUL.md', () => {
|
||||
expect(openclaw.staticFiles).toBeDefined();
|
||||
expect(openclaw.staticFiles!['SOUL.md']).toBeDefined();
|
||||
test('openclaw has no staticFiles (SOUL.md removed)', () => {
|
||||
expect(openclaw.staticFiles).toBeUndefined();
|
||||
});
|
||||
|
||||
test('openclaw has includeSkills for native methodology skills', () => {
|
||||
expect(openclaw.generation.includeSkills).toBeDefined();
|
||||
expect(openclaw.generation.includeSkills).toContain('office-hours');
|
||||
expect(openclaw.generation.includeSkills).toContain('plan-ceo-review');
|
||||
expect(openclaw.generation.includeSkills).toContain('investigate');
|
||||
expect(openclaw.generation.includeSkills).toContain('retro');
|
||||
expect(openclaw.generation.includeSkills!.length).toBe(4);
|
||||
});
|
||||
|
||||
test('every host has coAuthorTrailer or undefined', () => {
|
||||
|
||||
Reference in New Issue
Block a user