add message for integration testing

This commit is contained in:
2025-03-20 20:22:58 -07:00
parent d8ec54919e
commit 049ea731a3

View File

@@ -23,6 +23,7 @@ async function main() {
const repository = new UnoptimizedInMemoryRepository(); const repository = new UnoptimizedInMemoryRepository();
let notificationService: NotificationService; let notificationService: NotificationService;
if (process.argv.length > 2 && process.argv[2] == "integration-testing") { if (process.argv.length > 2 && process.argv[2] == "integration-testing") {
console.log("Using integration testing setup")
await loadTestData(repository); await loadTestData(repository);
notificationService = new NotificationService(repository, false); notificationService = new NotificationService(repository, false);
} else { } else {