diff --git a/src/index.ts b/src/index.ts index 3cf1915..b3376c9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -23,6 +23,7 @@ async function main() { const repository = new UnoptimizedInMemoryRepository(); let notificationService: NotificationService; if (process.argv.length > 2 && process.argv[2] == "integration-testing") { + console.log("Using integration testing setup") await loadTestData(repository); notificationService = new NotificationService(repository, false); } else {