backend-common: make ReadTreeResponse.files async

This commit is contained in:
Patrik Oldsberg
2020-11-12 10:37:04 +01:00
parent 752808090b
commit e74422b4d8
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -30,7 +30,7 @@ describe('getDocFilesFromRepository', () => {
dir: async () => {
return '/tmp/testfolder';
},
files: () => {
files: async () => {
return [];
},
archive: async () => {
@@ -78,7 +78,7 @@ describe('getDocFilesFromRepository', () => {
dir: async () => {
return '/tmp/testfolder';
},
files: () => {
files: async () => {
return [];
},
archive: async () => {