Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions COMPREHENSIVE_TESTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Tests the configuration builder and validation system.
**Test Cases**: 50+

```bash
npm test -- config-builder.test.ts
npm test -- src/__tests__/config-builder.test.ts
```

---
Expand All @@ -56,7 +56,7 @@ Tests the template registry and template composition system.
**Test Cases**: 40+

```bash
npm test -- integration/template-loading.test.ts
npm test -- src/__tests__/integration/template-loading.test.ts
```

---
Expand Down Expand Up @@ -86,7 +86,7 @@ Tests the project generator for actual project creation.
**Test Cases**: 50+

```bash
npm test -- integration/generator.test.ts
npm test -- src/__tests__/integration/generator.test.ts
```

---
Expand Down Expand Up @@ -189,18 +189,18 @@ npm test -- src/__tests__/integration/e2e-scenarios.test.ts
6. **Config Builder Comprehensive**

```
npm test -- config-builder.test.ts
npm test -- src/__tests__/config-builder.test.ts
```

7. **Template System Comprehensive**

```
npm test -- integration/template-loading.test.ts
npm test -- src/__tests__/integration/template-loading.test.ts
```

8. **Generator Comprehensive**
```
npm test -- integration/generator.test.ts
npm test -- src/__tests__/integration/generator.test.ts
```

### CI Matrix
Expand All @@ -223,9 +223,9 @@ npm test
### Specific Test Suite

```bash
npm test -- config-builder.test.ts
npm test -- integration/template-loading.test.ts
npm test -- integration/generator.test.ts
npm test -- src/__tests__/config-builder.test.ts
npm test -- src/__tests__/integration/template-loading.test.ts
npm test -- src/__tests__/integration/generator.test.ts
npm test -- src/__tests__/integration/e2e-scenarios.test.ts
```

Expand Down
Loading