Files
novalon-website/test-framework/shared/utils/testing/TestDataCleaner.ts
T
zhangxiang 602ed6a671 test(hooks): finalize mutation test improvements and release acceptance
- Raise use-swipe-gesture mutation score to 66.13% (target 65%+)
- Maintain use-reduced-motion mutation score at 76.32% (target 50%+)
- Fix use-reduced-motion.ts ESLint set-state-in-effect warning
- Add UJ-10 deep searcher journey (category browse → article read → content discovery)
- Add 40 new test files (analytics, detail, sections, ui, lib components)
- Update test-strategy-plan.md to v2.0 (sync test count to 1591)
- Sync README.md with final release metrics

Quality gates: TS 0 errors, ESLint 0 errors, 121 suites / 1591 tests passed
2026-08-02 19:39:27 +08:00

37 lines
1014 B
TypeScript

// @ts-nocheck
import * as fs from 'fs';
import * as path from 'path';
import { TestDataFactory } from './TestDataFactory';
export class TestDataCleaner {
static async cleanupDatabase(): Promise<void> {
console.log('清理测试数据库...');
}
static async cleanupFiles(): Promise<void> {
const testResultsDir = path.join(process.cwd(), 'test-results');
if (fs.existsSync(testResultsDir)) {
const files = fs.readdirSync(testResultsDir);
for (const file of files) {
const filePath = path.join(testResultsDir, file);
const stat = fs.statSync(filePath);
if (stat.isDirectory()) {
fs.rmSync(filePath, { recursive: true, force: true });
} else {
fs.unlinkSync(filePath);
}
}
}
}
static async cleanupCache(): Promise<void> {
TestDataFactory.clearCache();
}
static async cleanupAll(): Promise<void> {
await this.cleanupDatabase();
await this.cleanupFiles();
await this.cleanupCache();
}
}