Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refine PoX-4 stateful testing environment and address comments #4597

26 changes: 26 additions & 0 deletions contrib/core-contract-tests/noopReporter.ts
@@ -0,0 +1,26 @@
import type { UserConsoleLog } from "vitest";

import { DefaultReporter } from "vitest/reporters";

export default class LoggerReporter extends DefaultReporter {
onInit() {}
onPathsCollected() {}
onCollected() {}
onFinished() {
return Promise.resolve();
}
onTaskUpdate() {}

onWatcherStart() {
return Promise.resolve();
}
onWatcherRerun() {
return Promise.resolve();
}

onServerRestart() {}

onProcessTimeou() {}

onUserConsoleLog(log: UserConsoleLog) {}
}
85 changes: 0 additions & 85 deletions contrib/core-contract-tests/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion contrib/core-contract-tests/package.json
Expand Up @@ -17,7 +17,6 @@
"@stacks/transactions": "^6.13.0",
"chokidar-cli": "^3.0.0",
"fast-check": "^3.15.1",
"ololog": "^1.1.175",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vitest": "^1.3.1",
Expand Down