1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Tweaks to make sure Nextcloud driver passes all test units

This commit is contained in:
Laurent Cozic
2018-01-25 21:15:58 +00:00
parent 7ab135c099
commit 8f3fdb3afe
11 changed files with 89 additions and 24 deletions

View File

@ -159,6 +159,11 @@ class FileApiDriverMemory {
return output;
}
clearRoot() {
this.items_ = [];
return Promise.resolve();
}
}
module.exports = { FileApiDriverMemory };