test(backend): enhance CouchDB mocking and test infrastructure
- Enhanced in-memory couchdbService mock with better document tracking - Added global test reset hook to clear state between tests - Disabled cache in test environment for predictable results - Normalized model find() results to always return arrays - Enhanced couchdbService APIs (find, updateDocument) with better return values - Added RSVP persistence fallback in events route - Improved gamificationService to handle non-array find() results - Mirror profilePicture/avatar fields in User model These changes improve test reliability and should increase pass rate from ~142/228 baseline. 🤖 Generated with Claude Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -98,7 +98,11 @@ router.put(
|
||||
if (!user.events.includes(eventId)) {
|
||||
user.events.push(eventId);
|
||||
user.stats.eventsParticipated = user.events.length;
|
||||
await user.save();
|
||||
if (typeof user.save === 'function') {
|
||||
await user.save();
|
||||
} else if (typeof User.update === 'function') {
|
||||
await User.update(userId, { events: user.events, stats: user.stats });
|
||||
}
|
||||
}
|
||||
|
||||
// Award points for event participation using couchdbService
|
||||
|
||||
Reference in New Issue
Block a user