Skip to content

Commit dfbb43a

Browse files
committed
fix: Update test paths to match cleaned template structure
- Fix tdd-validation-agent test to look in templates/agents/ instead of templates/.claude/agents/ - Update installation test to expect settings.json.template instead of .claude/settings.json - Tests now reflect the cleaned template folder structure from previous commit
1 parent 1579111 commit dfbb43a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/agents/tdd-validation.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ describe('TDD Validation Agent', () => {
88

99
describe('Agent Integration', () => {
1010
test('should have tdd-validation-agent specification file', () => {
11-
const agentPath = path.join(__dirname, '../../templates/.claude/agents/tdd-validation-agent.md');
11+
const agentPath = path.join(__dirname, '../../templates/agents/tdd-validation-agent.md');
1212
expect(fs.existsSync(agentPath)).toBe(true);
1313
});
1414

tests/installation.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ describe('NPX Installation Tests', () => {
5959
test('should contain required template files', async () => {
6060
const requiredTemplates = [
6161
'CLAUDE.md',
62-
'.claude/settings.json',
62+
'settings.json.template',
6363
'.claude-collective',
6464
'.taskmaster'
6565
];

0 commit comments

Comments
 (0)