Skip to content
Snippets Groups Projects

Include coverage reports from child pipeline

All threads resolved!
2 files
+ 30
4
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -29,8 +29,11 @@ class UsersCache extends Cache {
}
return getUser(userId).then(({ data }) => {
this.internalStorage[userId] = data;
return data;
this.internalStorage[userId] = {
...this.get(userId),
...data,
};
return this.internalStorage[userId];
});
// missing catch is intentional, error handling depends on use case
}
Loading