test(backend): Testen voor LearningPathService toegevoegd

This commit is contained in:
Gerald Schmittinger 2025-03-10 23:32:22 +01:00
parent cb6056e9d7
commit 392510db82
12 changed files with 114 additions and 8 deletions

View file

@ -24,7 +24,7 @@ const learningPathService = {
const userContentLearningPaths =
await databaseLearningPathProvider.fetchLearningPaths(userContentHruids, language, source);
const nonUserContentLearningPaths
= await databaseLearningPathProvider.fetchLearningPaths(nonUserContentHruids, language, source);
= await dwengoApiLearningPathProvider.fetchLearningPaths(nonUserContentHruids, language, source);
return {
data: (userContentLearningPaths.data || []).concat(nonUserContentLearningPaths.data || []),