datahaven/test/tsconfig.json
Steve Degosserie 17c215d047
refactor(test): reorganize e2e test suites (#373)
## Summary

Reorganizes the test directory structure for better clarity and
maintainability:

- **Rename `test/datahaven/` → `test/moonwall/`**: Clearly identifies
these as Moonwall single-node tests
- **Move `test/framework/` → `test/e2e/framework/`**: Groups e2e test
utilities under a dedicated folder
- **Move `test/suites/` → `test/e2e/suites/`**: Groups e2e test suites
with the framework
- **Add `test/e2e/framework/validators.ts`**: Extracts validator test
helpers from utils into the e2e framework
- **Update documentation**: README.md and E2E_FRAMEWORK_OVERVIEW.md
reflect the new structure

### New Directory Structure

```
test/
├── e2e/
│   ├── suites/          # E2E test suites (Kurtosis-based)
│   └── framework/       # E2E test utilities & helpers
├── moonwall/            # Moonwall single-node tests
├── launcher/            # Network deployment tools
└── ...
```

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 15:52:33 +02:00

48 lines
1.2 KiB
JSON

{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": false,
"importHelpers": true,
"incremental": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"baseUrl": "./",
"preserveConstEnums": true,
"esModuleInterop": true,
"resolveJsonModule": true,
// Speed
"tsBuildInfoFile": "tmp/tsconfig.tsbuildinfo",
"assumeChangesOnlyAffectDirectDependencies": true,
"paths": {
"utils": ["./utils/index.ts"],
"utils/types": ["./utils/types.ts"],
"utils/constants": ["./utils/constants.ts"]
}
},
"include": [
"utils/*.ts",
"scripts/*.ts",
"e2e/**/*.ts",
"cli/**/*.ts",
"wagmi.config.ts",
"contract-bindings/*.ts",
"launcher/**/*.ts"
]
}